/* ====== Login Page Style ====== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #004e92, #000428);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 40px;
    width: 380px;
    text-align: center;
    animation: fadeIn 1s ease;
}

.logo-section img.logo {
    width: 90px;
    margin-bottom: 10px;
}

.logo-section h1 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 5px;
}

.logo-section p {
    color: #555;
    margin-bottom: 25px;
}

form input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.3s;
}

form input:focus {
    border-color: #004e92;
    box-shadow: 0 0 5px rgba(0, 78, 146, 0.3);
}

form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #004e92, #000428);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}