﻿/*Change text in autofill textbox*/
@-webkit-keyframes autofill {
    to {
        color: white;
        background: transparent !important;
    }
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 30px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
}

.mfaText {
    font-weight: lighter;
    font-size: 17px;
    color: #FFFFFF;
    margin-top: 20px;
}

.btnResend {
    border-radius: 20px;
    float: right;
    width: 75px;
}


.underline {
    text-decoration: underline;
    color: #4C6CDB;
}

    .underline:hover {
        color: #C20047;
        cursor: pointer;
    }