.signup-container {
    display: flex;
    max-width: 499px;
    margin: 2rem auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.signup-content {
    flex: 1;
    padding: 3rem;
}

.signup-image {
    flex: 1;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.signup-subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #4f46e5;
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.phone-input-container {
    display: flex;
}

.phone-input-container select {
    width: 80px;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    background-color: #f9fafb;
    border-right: none;
}

.phone-input-container input {
    border-radius: 0 8px 8px 0;
}

.password-input-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
}

.password-strength {
    margin-top: 0.5rem;
}

.strength-meter {
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    margin-bottom: 0.25rem;
}

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

.strength-meter-fill[data-strength="0"] {
    width: 20%;
    background-color: #ff4d4d;
}

.strength-meter-fill[data-strength="1"] {
    width: 40%;
    background-color: #ffa64d;
}

.strength-meter-fill[data-strength="2"] {
    width: 60%;
    background-color: #ffcc00;
}

.strength-meter-fill[data-strength="3"] {
    width: 80%;
    background-color: #80cc28;
}

.strength-meter-fill[data-strength="4"] {
    width: 100%;
    background-color: #29cc29;
}

.strength-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.checkbox-group a {
    color: #4f46e5;
    text-decoration: none;
}

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

.signup-btn {
    width: 100%;
    padding: 0.875rem;
    background-color: #4f46e5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-btn:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
}

.signup-btn:active {
    transform: translateY(0);
}

.alternate-signin {
    margin-top: 2rem;
    text-align: center;
}

.alternate-signin a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.alternate-signin a:hover {
    text-decoration: underline;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    color: #374151;
}

.info-card h3 {
    color: #111827;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.info-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
}

.info-card li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.info-card li i {
    color: #4f46e5;
    margin-right: 0.75rem;
}

.testimonial {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.testimonial p {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.validation-error, 
.availability-indicator {
    color: #f44336;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.error-messages {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: 4px;
}

.error {
    color: #d32f2f;
    margin: 5px 0;
    font-size: 14px;
}

.phone-input-container {
    position: relative;
    margin-bottom: 5px; /* Add space for the error message */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .signup-container {
        flex-direction: column;
        margin: 1rem;
    }
    
    .signup-image {
        padding: 3rem 2rem;
    }
    
    .info-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .signup-content {
        padding: 2rem 1.5rem;
    }
    
    .signup-image {
        padding: 2rem 1.5rem;
    }
}