html, body {
    height: 100%;
    margin: 0;
}

#container {
    display: flex;
    align-items: center;
    justify-content: center; 
    height: 100vh;
    background-image: url("pavilion.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#form {
    text-align: center;
    margin-bottom: 50px;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

input[type="password"] {
    width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

input[type="password"]:focus {
    border-color: #5c9edb;
    box-shadow: 0 0 5px rgba(92, 158, 219, 0.5);
}

button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #5c9edb;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.3s ease-in-out;
    margin-left: 5px;
}

button::after {
    content: '\2192';
    font-size: 20px;
}

button:hover {
    background-color: #4682b4;
}

@media only screen and (max-width: 400px) {
    input[type="password"] {
        width: 175px !important;
    }
}