/* user-case component styles (extracted from login.css, register.css, forgot-password.css) */

.user-case-section {
    width: 700px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    margin-left: auto; /* push user-case to the right edge of the container */
    align-self: stretch; /* stretch to full container height */
}

.user-case-section .user-case-card {
    width: 648px;
    height: 860px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.user-case-section .user-case-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-case-section .user-case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 154px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.user-case-section .user-case-description {
    font-size: 20.093px;
    color: white;
    margin-bottom: 16px;
    line-height: 1.4;
}

.user-case-section .user-case-title {
    font-size: 28px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
}

/* Responsive adjustments extracted from templates */
@media (max-width: 1400px) {
    .user-case-section {
        width: 500px;
        flex: 0 0 40%;
    }

    .user-case-section .user-case-card {
        width: 460px;
        height: 652px;
    }
}

@media (max-width: 1024px) {
    /* small screens: hide user-case to prioritize form content */
    .user-case-section {
        display: none;
    }
}
