.register-container {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    overflow-x: hidden;
}

.welcome-section {
    text-align: center;
    margin-bottom: 32px;
}

.welcome-section h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.welcome-section p {
    font-size: 16px;
    color: #64748b;
}

.register-form {
    margin-bottom: 32px;
}

.form-options {
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.form-options .checkbox-container {
    align-items: flex-start;
    line-height: 1.4;
}

.terms-link {
    color: #4f46e5;
    text-decoration: underline;
}

.terms-link:hover {
    color: #3730a3;
}

.auth-link {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.auth-link p {
    color: #64748b;
    font-size: 14px;
}

.auth-link a {
    font-weight: 600;
}

/* Password strength indicator */
.password-strength {
    margin-top: 8px;
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.password-strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.password-strength-fill.weak {
    width: 33%;
    background-color: #ef4444;
}

.password-strength-fill.medium {
    width: 66%;
    background-color: #f59e0b;
}

.password-strength-fill.strong {
    width: 100%;
    background-color: #22c55e;
}

/* Form validation */
.form-group.error input {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-group.success input {
    border-color: #22c55e;
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}