.login-logo {
    height: 80px;
    width: auto;
}

/* Helpers if you still want basic spacing without Tailwind */
.mx-auto { margin-left: auto; margin-right: auto; display: block; }
.mb-2 { margin-bottom: 0.5rem; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.space-y-2 > * + * { margin-top: 0.5rem; }

.login-btn {
    margin-top: 30px;
    width: 100%;
    background-color: #111827; /* gray-900 */
    color: #fff;
    border: 1px solid #111827;
    border-radius: 6px;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
}
.login-btn:hover { background-color: #0b1220; }
.login-btn:active { background-color: #0a0f1a; }
.login-btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(17, 24, 39, .35); }

/* Google button styling (Material-inspired) */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: #174ea6; /* Google Blue 800 */
    color: #fff;
    border: 1px solid #174ea6;
    border-radius: 6px;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .15s ease, box-shadow .15s ease;
}
.google-btn:hover { background-color: #1557b0; }
.google-btn:active { background-color: #0f4a8a; }
.google-btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(23, 78, 166, .35); }
.google-icon {
    width: 18px;
    height: 18px;
}

