

.reset-password form input[type="email"]
{  
    min-width: auto;
    height: 50px;
    border: 1px solid #01C38D;
    background: #191e29;
    color: #fff;
    text-align: center;
}

.reset-password form input[type="email"]::placeholder
{  
    color: #fff;
    text-align: center;
}

.reset-password form input[type="email"]:-webkit-autofill,
.reset-password form input[type="email"]:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
  background: #191e29;
}


.reset-password .card
{
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
background: #191e29cb;
color: #01C38D;
border-radius: 25px;
height: max-content;
}


.reset-password i{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #42c58b;
    color: #ffffff;
}

.disabledform{
    pointer-events: none;
    filter:contrast(0.6);
}
.reset-password .hidden {
    display: none !important;
}


.reset-password .border-error{ border-color: red !important; }

.reset-password .border-success{ border-color: green !important; }

.reset-password form small { color: red; }

#BTN_SEND_RESETLINK {
    width: 100%;
    padding: 15px;
    margin: 10px;
    background-color: #42c58b;
    border: 0;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.2s;
}