* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f4f8;
    position: relative;
    overflow: hidden;
}

.container {
    text-align: center;
    z-index: 2;
}

header h1 {
    font-size: 2.5rem;
    color: #0275d8;
    margin-bottom: 20px;
}

.login-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 300px;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #0275d8;
    border: none;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #025aa5;
}

.water-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('{{ url_for('static', filename='img/water.svg') }}') repeat-x;
    bottom: 0;
    z-index: 1;
    animation: animateWaves 10s linear infinite;
}

@keyframes animateWaves {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}
