@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    /* transition: 0.3s ease-in-out; */
}

p {
    margin: 0;
    padding: 0;
    align-self: flex-start;
    margin-left: 2px;
    font-weight: bold;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(118, 129, 144);
}

div.banner {
    width: 300px;
    height: 128px;
    border-radius: 10px;
    background-image: url('../img/logo-2020-miniature.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 10px;
}

div.login {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 30px;
    border-radius: 15px;
    background-color: #FFFFFF;
    box-shadow: #4f5661 3px 3px 15px;
}

div.buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

input.text {
    height: 35px;
    width: 300px;
    padding: 0;
    margin: 0;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
    outline: 0;
    border-width: 0 0 2px;
    border-color: #4f5661;
    background-color: #4f566118;
}

input.text:disabled {
    border-color: #cccccc !important;
}

input.text:focus {
    border-width: 0 0 5px;
    border-color: #db3a49;
    font-weight: bold
  }

input.help {
    height: 30px;
    width: 146.5px;
    align-self: flex-start;
    padding: 0;
    margin: 0;
    border-style: none;
    border-radius: 15px;
    box-sizing: border-box;
    background-color: #4f566115;
    cursor: pointer;
}

input.button {
    height: 30px;
    width: 146.5px;
    align-self: flex-end;
    padding: 0;
    margin: 0;
    border-style: solid;
    border-width: 3px;
    border-color: #db3a49;
    border-radius: 15px;
    box-sizing: border-box;
    background-color: #db3a49;
    color: #FFFFFF;
    cursor: pointer;
    
}

input.help:hover {
    background-color: #4f566130;
}

input.button:hover {
    color: #db3a49;
    background-color: #FFFFFF;
    font-weight: bold
}