@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body, html {
    height: 90%;
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('../images/landing/banner.webp') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
}

h1 {
    text-align: center;
    font-size: 36px;
    color: white;
}

.container-bg {
    border-radius: 6px;
    padding: 30px;
    width: 75%;
    max-width: 700px;
    text-align: center;
    color: white;
    border: 2px solid #FFFFFF33;
    box-sizing: border-box;
    background: transparent;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

input[type="text"], input[type="password"] {
    padding: 15px;
    font-size: 16px;
    margin: 15px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 85%;
    box-sizing: border-box;
}

input[type="submit"] {
    width: 60%;
    padding: 15px;
    background-color: #3794D2;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    box-sizing: border-box;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

a {
    display: inline-block;
    background-color: white;
    color: #3794D2;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
}

a:hover {
    background-color: #f1f1f1;
}

.footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 14px;
}