/* Login Module */
.login-module {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    max-width: 400px;
    width: 100%;
    margin: 40px auto;
    text-align: center;
}

.login-module h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--color-text-primary);
}

.login-module button {
    width: 100%;
    margin-top: 10px;
    font-weight: 600;
}

/* Google Button */
.google-btn {
    background: white;
    color: #333;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    font-weight: 500 !important;
}

.google-btn:hover {
    background: #f8f8f8;
    border-color: #ccc;
    box-shadow: var(--shadow-subtle);
}

.google-btn i {
    font-size: 1.1em;
}