@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #f0f6ff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    animation: slideDown 0.7s ease-out forwards;
    opacity: 0;
    transform: translateY(-50px);
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    color: #003366;
    margin-bottom: 30px;
    text-align: center;
}

label {
    display: block;
    margin-bottom: 6px;
    color: #003366;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #aaccee;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

input[type="submit"] {
    background-color: #0066cc;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.25s;
}

input[type="submit"]:hover {
    background-color: #004a99;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-wrapper h1 {
    margin-bottom: 20px;
    color: #003366;
    font-size: 28px;
}
