.signup-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 60%;
    margin: 0px auto;
}

.signup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.signup-header h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.signup-header p {
    color: #666;
    font-size: 0.9rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    /* margin-bottom: 1.5rem; */
}

.form-group {
    flex: 1;
    margin-bottom: 1.2rem;
}

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

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.password-requirements {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

.terms {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.terms input[type="checkbox"] {
    margin-top: 0.25rem;
}

.terms label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.terms a {
    color: #4A90E2;
    text-decoration: none;
}

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

.signup-button {
    width: 100%;
    padding: 0.75rem;
    background-color: #D4AF37;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-button:hover {
    background-color: #006039;
}

.signin-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

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

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

.social-signup {
    margin-top: 2rem;
    text-align: center;
}

.social-signup p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    position: relative;
}

.social-signup p::before,
.social-signup p::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #ddd;
}

.social-signup p::before {
    left: 0;
}

.social-signup p::after {
    right: 0;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-button {
    padding: 0.75rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-button:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .signup-container {
        width: auto;
        max-width: 100%;
        padding: 1.5rem;
    }
}
