:root {
    --primary: #fd0d01;
    --primary-dark: #ba0404;
    --error: #dc3545;
    --success: #28a745;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
}

.signup-container {
    max-width: 600px;
    margin: 9rem auto;
    padding: 3px;
}

.signup-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    text-align: center;
    background: var(--light-gray);
}

.card-header h2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
}

.account-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.account-type {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.account-type.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.card-body {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;

}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}
label {
    color: #592e2e;
    font-weight: bold;
}
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
}

.btn-primary {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.error-message {
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.terms {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 576px) {
    .account-types {
        flex-direction: column;
    }
    
    .card-header, .card-body {
        padding: 1rem;
    }
}

/* Responsive */
@media (max-width: 576px) {
    .signup-container {
        max-width: 500px;
        margin: 12rem 2rem;
        padding: 0 1rem;
    }
}