.main-content-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
       
main {
    width: 100%;
    height: 100vh;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 20px 50px;
}

.auth-container {
    background: #FAFCFF;
    border-radius: 20px;
    width: 50%;
    max-width: 764px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 0px;
    position: relative;
}

.auth-container .back-btn {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 35px;
    height: 35px;
}

.auth-content {
    display: flex;
    flex-direction: column;
    width: 60%;
    max-width: 390px;
    height: 60.645vh;
    gap: 12px;
}

.welcome-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 10px;
    margin-bottom: 32px;
}

.welcome-title {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 0px;
}

.welcome-subtitle {
    color: #8E8E8E;
    font-weight: 500;
    font-size: 1rem;
    line-height: 100%;
}

.form-upper-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.form-section form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-lower-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
}


@media (max-width: 480px) {
    .auth-container {
        margin: 1rem;
        border-radius: 12px;
    }
    
    .welcome-section {
        padding: 0 1rem 1rem;
    }
    
    .form-section {
        padding: 0 1rem 1.5rem;
    }
}