:focus {
    outline: none;
    color: #000;
}

::placeholder {
    text-transform: uppercase;
}

* {
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Nunito', sans-serif;
}

body {
    overflow: hidden;
    background-color: #E5E5E5;
}

.alert {
    display: block;
    text-align: center;
    padding: 15px;
    margin: 20px 0;
    background-color: indianred;
    border-radius: 5px;
    position: static;
    opacity: 1;
    transition: hide 4s;
}

.alert span {
    color: #fff;
    font-weight: 500;
}

.alert i {
    display: block;
    text-align: center;
    font-size: 25px;
    padding: 10px;
    color: #fff;
}

.container {
    padding-top: 50px;
    height: 100vh;
    z-index: 1;
}

.login-container {
    width: 300px;
    margin: 0 auto;
    padding: 45px;
    border-radius: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.5);
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    background-color: #dfdfdf;
    border-radius: 5px;
}

input[type="submit"] {
    text-transform: uppercase;
    font-weight: bold;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    box-sizing: border-box;
    color: #fff;
    border: none;
    cursor: pointer;
    background-color: #00733f;
}

input[type="submit"]:hover {
    background-color: #df9818;
    color: #fff;
    transition: 0.3s ease-out;
}

label {
    color: #000;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
}

.logo-container {
    display: block;
    padding-top: 15px;
    margin: 0 auto;
    text-align: center;
}

small {
    text-align: center;
    color: #000;
    font-size: 10px;
}

img {
    width: 100%;
}

@keyframes hide {
    0% {
        opacity: 1
    }

    99% {
        opacity: 0;
        z-index: 1;
    }

    100% {
        opacity: 0;
        display: none;
        position: fixed;
        z-index: -5;
    }
}