﻿.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(0,0,0,0.8);
    padding: 2rem;
    border-radius: 8px;
}

.form-input {
    padding: 12px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #1a1a1a;
    color: white;
    font-size: 16px;
}

.btn-primary {
    padding: 12px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}

    .btn-primary:hover {
        background: #4f46e5;
    }

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}

    .btn-google:hover {
        background: #f8f8f8;
    }

    .btn-google img {
        width: 20px;
        height: 20px;
    }

.btn-link {
    background: none;
    border: none;
    color: #6366f1;
    cursor: pointer;
    text-decoration: underline;
}

.divider {
    text-align: center;
    color: #666;
    position: relative;
    margin: 0.5rem 0;
}

    .divider::before,
    .divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 45%;
        height: 1px;
        background: #333;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

.error-message {
    padding: 12px;
    background: #dc2626;
    color: white;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.loading {
    text-align: center;
    color: #6366f1;
    font-weight: 600;
}
