@import url("https://fonts.googleapis.com/css?family=Roboto:400");

html {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
}

.gradient {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #fcfcfc;
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 341px;
    padding-top: 85px;
}

.form-inputs {
    padding: 3px 10px;
    border: 1px solid #dadada;
    border-radius: 5px;
    background-color: white;
}

.form-inputs-item {
    display: flex;
    align-items: center;
}

.form-inputs-item img {
    margin-right: 15px;
}

.form-message {
    display: flex;
    align-items: center;
    height: 50px;
}

.form-error {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fefefe;
    font-weight: bold;
    color: #F44336;
}

.form-error span {
    margin-top: 1px;
}

.form-error img {
    margin-right: 6px;
}

input {
    font-size: 18px !important;
    line-height: 22px !important;
    font-family: inherit !important;
    border: none;
    outline: none;
    width: 100%;
    color: #878787;
    background-color: white !important;
    filter: none;
    padding: 5px 0;
}

input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px #fff !important;
    -webkit-text-fill-color: #878787 !important;
    color: #878787 !important;
}

input#inputlogin {
    border-bottom: 1px solid #dadada;
}

button {
    width: 100%;
    font-size: 18px;
    line-height: 22px;
    font-family: inherit;
    background: rgb(0, 93, 172);
    border-radius: 5px;
    color: white;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 7px 16px;
    text-transform: uppercase;
    transition: background 0.1s;
}

button:hover {
    background: rgb(40, 58, 151);
}

.forgot-password {
    color: rgb(0, 174, 239);
    font-size: 14px;
    padding: 5px;
    margin-top: 10px;
    cursor: pointer;
    align-self: flex-end;
    transition: color 0.1s;
}

.forgot-password:hover {
    color: rgb(0, 93, 172);
}

.developer-info {
    align-self: center;
    margin-top: 50px;
    font-weight: bold;
    color: rgb(21, 21, 22);
    font-size: 14px;
}

.toast {
    bottom: 0;
    position: fixed;
    padding: 20px;
    color: white;
    background: #002841;
    width: 330px;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transform: translateY(100%);
}

.toast.show {
    transition: all 0.3s;
    transform: translateY(0);
}

.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.logo__img {
    max-width: 300px;
    max-height: 150px;
}

@media screen and (max-width: 720px) {
    .toast {
        width: 100vw;
    }
}

@media screen and (max-width: 360px) {
    .wrapper {
        padding-top: 25px;
    }
}

@media screen and (max-width: 320px) {
    .wrapper {
        width: 310px;
    }
}
