/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #091124;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card {
    background-color: #000000;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px #FDE400;
    animation: breathe 3s infinite;
    text-align: center;
}

@keyframes breathe {
    0% {
        box-shadow: 0 0 10px #FDE400;
    }
    50% {
        box-shadow: 0 0 30px #FDE400;
    }
    100% {
        box-shadow: 0 0 10px #FDE400;
    }
}

.logo img {
    width: 150px;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 25px;
    color: #FDE400;
    font-weight: 600;
}

form input[type="email"],
form input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
    background: #091124;
    color: #ffffff;
}

form input[type="email"]:focus,
form input[type="password"]:focus {
    border-color: #FDE400;
}

.g-recaptcha {
    margin: 20px 0;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #FDE400;
    color: #091124;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

button[type="submit"]:hover {
    background: #e0c800;
    transform: translateY(-2px);
}

.help-text {
    margin-top: 20px;
    font-size: 14px;
    color: #cccccc;
}

.error-message {
    background-color: #ff4d4d;
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 14px;
    animation: fadeIn 0.5s ease-in-out;
}

/* (Optional) smooth fade-in */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
