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

body {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    background-image: url(../img/background.png);
    background-size: fill;
    background-position: center;
    font-family: 'Jost', sans-serif;
}

.login-container {
    max-width: 450px !important;
    height: 550px;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.137);
}

.login-body {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

}

.btn-outline-info {
    color: #e4316f !important;
    border: 1px solid #e4316f !important;
}

.btn-outline-info:hover {
    color: white !important;
    background-color: #e4316f !important;
}

@media screen and (max-width: 450px) {
    body {
        padding: 0;
        margin: 0;
        min-height: fit-content;
    }

    .login-container {
        background-color: white;
        backdrop-filter: none;
        width: 95%;
        height: 70vh;
        margin-top: 0 !important;
    }

}