﻿input[type="text"]:focus, input[type="password"]:focus, .focus {
    border-color: rgb(83, 125, 191) !important;
    box-shadow: 0px 0px 3px rgb(114, 158, 226);
}
textarea:focus, select:focus, .focus {
    border-color: rgb(83, 125, 191) !important;
    box-shadow: 0px 0px 3px rgb(114, 158, 226);
}
input[type="text"], input[type="password"], textarea, select {
    transition: all 0.25s ease-in-out 0s;
}
input[type="text"], input[type="password"] {
    background-color: rgb(255, 255, 255);
    border-style:solid;
    border: 1px solid rgb(215, 215, 215);
    color: rgb(51, 51, 51);
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.4) inset;
}
textarea {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(215, 215, 215);
    color: rgb(51, 51, 51);
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.4) inset;
}
:focus {
    outline: 0px none;
}
button, input, select, textarea {
    margin: 0px;
}