/* Login Page Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans Light', sans-serif;
    background-color: #242424;
    color: #f0f2f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.login-container {
    background-color: rgba(36, 36, 36, 0.8);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    margin: 20px;
    backdrop-filter: blur(10px);
}

.logo-container {
    margin-bottom: 30px;
}

.logo-container img {
    width: auto; 
    height: 120px;
    max-width: 100%; 
    transition: transform 0.3s ease;
    display: block; 
    margin: 0 auto;
}


.logo-container img:hover {
    transform: scale(1.1);
}

h1 {
    font-size: 2.2em;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

#scopos_text {
    color: #B4BD00;
    font-weight: 400;
}

p {
    font-size: 1.1em;
    color: #a0a0a0;
    margin-bottom: 30px;
    line-height: 1.5;
}

.google-signin-container {
    display: flex;
    justify-content: center;
}

.g_id_signin {
    margin-top: 30px;
    transition: transform 0.2s ease;
}

.g_id_signin:hover {
    transform: translateY(-2px);
}

/* Add subtle animation for the container */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-container {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }

    .logo-container img {
        width: 60px;
        height: 60px;
    }
}
