:root {
    --primary-color: #ff5900;
    --text-main: #53565a;
    --text-secondary: #888b8d;
    --border-light: #dbdcdb;
    --border-medium: #a7a8aa;
    --bg-white: #fff;
    --bg-overlay: rgba(83, 86, 90, 0.5); /* Using #53565a for overlay */
}

body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.bg-login {
    background-image: linear-gradient(var(--bg-overlay), var(--bg-overlay)), url('../images/bg-01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 3.5rem 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid var(--primary-color);
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    animation: fadeIn 0.8s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-container {
    margin-bottom: 2.5rem;
}

.logo-container img {
    max-width: 180px;
    height: auto;
}

.login-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.login-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.4;
}

/* Google Button Styles */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-white);
    border: 1px solid var(--border-medium);
    border-radius: 6px;
    padding: 0.85rem 1.5rem;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    width: 100%;
}

.google-btn:hover {
    background-color: #fdfdfd;
    border-color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.google-btn:active {
    background-color: var(--dbdcdb);
}

.google-btn svg {
    margin-right: 12px;
    width: 18px;
    height: 18px;
}

.footer-text {
    margin-top: 2.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}
