/* Login page styles */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f9fafb;
}

.login-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
}

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

.logo {
    max-width: 180px;
    height: auto;
}

h1 {
    color: #1f4e79;
    font-size: 24px;
    margin-bottom: 20px;
}

.login-message {
    margin-bottom: 30px;
    color: #6b7280;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1f4e79;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
}

.btn-login:hover {
    background-color: #153c61;
    color: #ffffff;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.login-footer {
    margin-top: 40px;
    color: #9ca3af;
    font-size: 14px;
}

/* Added custom footer for AI-ML team attribution */
.ai-ml-footer {
    margin-top: 20px;
    color: #6b7280;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    font-weight: 500;
}

.ai-ml-footer span {
    vertical-align: middle;
}

.ai-ml-footer .emoji {
    font-size: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

@media (max-width: 500px) {
    .login-card {
        padding: 30px 20px;
        max-width: 85%;
    }

    h1 {
        font-size: 20px;
    }
}
