@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}

.authentication-bg {
    /* background: linear-gradient(180.14deg, #BBE8D2 49.9%, rgba(134, 168, 199, 0.5) 99.88%); */
    background: var(--Degrade-azul-verde, linear-gradient(90deg, #172956 0%, #00562D 91.31%));
}

.login-container {
    text-align: center;
}

#form {
    width: 25rem;
}

.title-form {
    font-size: 18px;
}

a {
    font-size: 14px;
    text-decoration: none;
    color: #2D815D;
}

a:hover {
    color: #227050;
    font-weight: 600;
}

.input {
    border-radius: 20px;
    color: #1A1A1A !important;
    border: 1px solid #2D815D !important;
    font-size: 14px !important;
    filter: drop-shadow(0px 1px 1px rgba(95, 95, 95, 0.25));
    padding-left: 45px;
}

.button {
    background: var(--Degrade-azul-verde, linear-gradient(90deg, #172956 0%, #00562D 91.31%)) !important;
    color: #FFF !important;
    border-radius: 30px;
    font-weight: 600;
}

.button-submit {
    font-size: 18px;
    height: 100%;
    width: 75%;
    margin: auto;
}

.button:hover {
    background-color: #295F47 !important;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

/* Daqui até a linha 74, serve para padronizar o focus do input*/
input.form-control:focus {
    border-color: #2D815D !important;
}

.form-control:focus,
.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
}


a:hover {
    color: #1E905F !important;
}

.error-msg {
    color: #970000;
    font-size: 12px;
    /* position: absolute; */
    z-index: 999;
    display: inline-block;
    left: 0;
    right: 0;
}

.top-20 {
    top: 20%;
}

.top-31 {
    top: 31%;
}

.eye-password {
    top: 10%;
    right: 18px;
    font-size: 20px;
    color: #A0A0A0;
}

.eye-password:hover
{
    color: #797979;
}

.icones-input {
    top: 20%;
    left: 7%;
    font-size: 17px;
    color: #A0A0A0;
}

.form-control::-moz-placeholder {
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  
  .form-control::placeholder {
    transition: all 0.25s ease;
  }
  .form-control:focus::-moz-placeholder {
    transform: translate(5px);
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  .form-control:focus::placeholder {
    transform: translate(5px);
    transition: all 0.25s ease;
  }