/* Layout Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
}

.main-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Left Section: Logo + Illustration */
.left-section {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
}

.logo-section {
    flex: 0 0 auto;
    margin-bottom: 20px;
}

.logo-section a {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.illustration-wrapper {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.illustration-container {
    width: 100%;
    max-width: 380px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.illustration-container img {
    width: 100%;
    height: auto;
    max-height: 400px;
}

/* Right Section: Form */
.right-section {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.form-content-wrapper {
    max-width: 450px;
    width: 100%;
}

/* Register Form Styles */
.step-wrapper { 
    display: none; 
}

.step-wrapper.active { 
    display: block; 
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 400;
    color: #333;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.password-requirements {
    margin-top: 8px;
    margin-bottom: 15px;
}

.password-requirements div {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 13px;
    color: #666;
}

.password-requirements .checkmark {
    color: #1bb68a;
    margin-right: 8px;
    font-weight: bold;
}

.password-requirements .unchecked {
    color: #999;
    margin-right: 8px;
}

.checkbox {
    margin: 15px 0;
}

.checkbox label {
    font-size: 14px;
    color: #333;
    font-weight: normal;
}

.checkbox a {
    color: #1bb68a;
    text-decoration: none;
}

.checkbox a:hover {
    text-decoration: underline;
}

.login-link {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.login-link a {
    color: #1bb68a;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

.help-block {
    display: none;
    color: #E74C3C;
}

/* Responsive */
@media (max-width: 991px) {
    .main-container {
        flex-direction: column;
    }
    .left-section, .right-section {
        width: 100%;
        min-height: auto;
    }
    .left-section {
        padding-bottom: 0;
    }
    .illustration-wrapper {
        padding: 40px 0;
    }
    .illustration-container img {
        max-height: 250px;
    }
}
