@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
* {
    padding: 0;
    margin: 0;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
}

body {
    background-color: #4C4A59;
}

.preload {
    display: none;
}

#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;   
    filter: blur(10px);
  }

.backout {
    height: 100vh;
    width: 100vw;
    background-color: rgba(76, 74, 89, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login {
    background-color: rgba(21, 31, 48, 0.9); 
    color: #F2F2F2;
    height: auto;
    width: 400px;
    border-radius: 20px;
    box-shadow: 1px 1px 5px #151F30;
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding: 10px 10px;
}

.login h2 {
    text-align: center;
    margin-top: 20px;
}

.button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.button button {
    background-color: #103778;
    color: #F2F2F2;
    width: 80%;
    margin-inline: center;
    padding: 10px 15px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
    transition: 0.3s;
}

.button button:hover {
    background-color: #154597;
    transition: 0.3s;
}

.login p {
    text-align: center;
    margin-bottom: 10px;
    color: #0593A2;
    font-size: 14px;
}

@media screen and (max-width: 500px) {
    .login {
        width: 80vw;
        font-size: 0.8em;
        display: flex;
        flex-direction: column;
        gap: 70px;
        padding: 10px 10px;
    }
}