/* font family Nextcasa security domain  */
body {
    font-family: 'Roboto', sans-serif;
}

/* href */
a {
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    color: #1396e2;
    text-decoration: none;
    outline: none !important;
}

/* form labels */
label {
    font-weight: bolder;
}

/* alerts */
.alert-success {
    color: #3E5463;
    background-color: lightcyan;
    border-color: #4cdecc;
    border-width: 1px;
    font-weight: bold;
}
.alert-success::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f164";
}

/* inputs */
input[type="text"] {
    background-color: lavender ;
}
input[type="number"] {
    background-color: lavender ;
}
input[type="file"] {
    background-color: #f3f3f3;
    border: none;
    font-size: 14px;
    outline: none !important;
    padding: 10px 9px 11px 9px;
    width: 100%;
    height: inherit;
}
textarea,
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea.form-control {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) inset;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) inset;
    -webkit-appearance: none;
    background-color: #f3f3f3;
    border: none;
    font-size: 14px;
    outline: none !important;
    padding: 10px 9px 11px 9px;
    width: 100%;
    height: inherit;
}
textarea:focus,
input:focus{
    background-color: #c5e3d9;
}

/* notices */
.nc-info {
    color: #3E5463;
    background-color: lightcyan;
    border-color: #4cdecc;
    border-width: 1px;
    font-weight: bold;
    padding: 15px;
}
.nc-info i {
    padding: 5px;
}
/* buttons */
.nc-button-filled,
.nc-button-filled:visited,
.nc-button-filled:focus,
.nc-button-filled:active {
    border: 1px solid #00d0b6;
    color: white;
    background-color: #00d0b6;
    padding: 5px 15px;
    transition: 0.3s;
    border-radius: 5px;
}
.nc-button-filled:hover {
    background-color: rgba(0, 208, 182, 0.7);
    border-color: rgba(0, 208, 182, 0.7);
}
.nc-button i,
.nc-button-filled i {
    padding: 5px;
}
.nc-button,
.nc-button:active,
.nc-button:focus,
.nc-button:visited{
    border: 1px solid #00d0b6;
    color: #00d0b6;
    padding: 5px 15px;
}
.nc-button span.new::before{
    font-family: "Font Awesome 5 Free";
    padding: 5px;
    content: '\f067';
}
.nc-button:hover {
    color: white;
    background-color: #00d0b6;
}

/* footer */
footer {
    font-size: 12px;
}
footer aside{
    color: grey;
}

#page-footer {
    padding-top: 5em;
}
#page-footer .inner #footer-main {
    background-color: #f3f3f3;
    padding: 40px 0;
}
#page-footer .inner h3 {
    color: #2a2a2a;
    font-weight: normal;
    margin-bottom: 30px;
    margin-top: 0;
}

.reset-header h2,
.login-header h2{
    color: #3e5463;
}

.forgot-link {
    color: #3e5463;
}
.forgot-link:hover {
    color: #3e5463;
    text-decoration: underline;
}