.login-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.login-header {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    border-bottom: 1px solid #eee;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.login-description {
    font-size: 0.875rem;
    color: #666;
}

.login-content {
    padding: 1.5rem;
}

.social-buttons {
    display: grid;
    grid-auto-columns: auto;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

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

.password-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.forgot-password {
    font-size: 0.75rem;
    color: #2563eb;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.remember-me label {
    font-size: 0.875rem;
    color: #333;
}

.login-button {
    width: 100%;
    padding: 0.75rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-button:hover {
    background-color: #1639a1;
}

.chevron {
    transition: transform 0.3s ease;
}

.chevron.up {
    transform: rotate(180deg);
}

.email-login {
    margin-top: 1.5rem;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    translate: 0 -100%;
}

.email-login.visible {
    display: block;
    opacity: 1;
    translate: 0 0;
}
