* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.main-container {
    height: 100%;
}

.img-container {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
}

.img-container img {
    width: 100%;
    height: 100%;
}

.content-container {
    padding: 15px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.input-container {
    margin-top: 30px;
    padding: 20px;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

textarea:focus,
input:focus {
    box-shadow: 0 0 0 0;
    outline: 0;
}

.input-container h3 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    text-align: center;
    font-size: 30px;
}

.email-login {
    background-color: transparent;
    border: none;
    border-radius: 0px;
    height: 45px;
    margin-top: 15px;
    color: white;
    font-size: 15px;
    border-bottom: 1px solid white;
    width: 300px;
}

.password-login {
    margin-top: 20px;
    border: none;
    border-radius: 0px;
    border-color: transparent;
    font-size: 15px;
    height: 45px;
    color: white;
    background-color: transparent;
    border-bottom: 1px solid white;
    width: 300px;
}

.loading-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
}

.loading {
    z-index: 2;
    width: 100%;
    height: 100%;
    text-align: center;
}

.btn-login {
    font-size: 20px;
    width: 280px;
    margin-top: 25px;
    cursor: pointer;
    height: 40px;
    border: none;
    color: white;
    background-color: #002173;
    border-radius: 5px;
}

.error-msg {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    width: 300px;
    margin-top: 5px;
    transition: all 2s ease;
    display: none;
}

button[disabled] {
    opacity: 0.7;
}

button:active {
    opacity: 1;
    transition: all 2s ease;
}

.logo-container {
    display: flex;
    position: relative;
    width: 100%;
    border-radius: 50px;
    justify-content: center;
}

.img-logo {
    position: absolute;
    width: 500px;
    z-index: 1;
}

.img-filter {
    height: 250px;
    border-radius: 50px;
    background-color: #fff;
    width: 500px;
    opacity: 0.2;
}

@media screen and (max-width:768px) {
    .img-logo {
        width: 330px;
    }
    .img-filter {
        height: 170px;
        width: 400px;
    }
}

@media screen and (max-width:350px) {
    .img-container img {
        height: 100%;
    }
    .img-logo {
        width: 300px;
    }
    .img-filter {
        height: 170px;
        width: 400px;
    }
}

.email-invalid-error {
    transition: all 2s ease;
}

.email-required-error {
    transition: all 2s ease;
}