/*!

 =========================================================
 * Login Form Bootstrap 1
 =========================================================

 * Product Page: https://uifresh.net
 * Copyright 2021 UIFresh (https://uifresh.net)
 * Coded by UIFresh

 =========================================================

 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

 */
html,
body {
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    background-image: linear-gradient(to right, #ffffff, #78e8ff);
}

a {
    color: rgba(0, 0, 255, 0.651);
    text-decoration: none;
    text-decoration: underline
}

a:hover {
    color: blue;
    text-decoration: none;

}

.uf-form-signin {
    width: 100%;
    max-width: 350px;
    padding: 15px;
    margin: auto;
}


.uf-input-group .input-group-text {
    background: #dfdfdfbf;
    color: #f8f9fa;
    border: unset;
    font-size: 18px;
    padding: 15px;
    width: 50px;
}

.uf-input-group .form-control {
    border: unset;
    border-left: 1px solid #ffffff05;
    font-size: 16px;
    background: #f9f9f9de;
}

/* This is custom css */

.input-group .form-control {
    flex: 1;
    /* Ensures input takes up available space */
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    /* Resets any margins applied */
    box-sizing: border-box;
    /* Ensures consistent sizing */
}

.field_with_errors {
    display: contents;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.field_with_errors .form-control {
    border: 1px solid red;
}

#error_explanation {
    border: 1px solid #ff0000;
    background-color: #ffe6e6;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

#error_explanation p {
    color: red;
    font-weight: bold;
    margin: 0 0 10px;
}

#error_explanation ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#error_explanation ul li {
    color: red;
    font-weight: normal;
    margin: 5px 0;
}

.input-group>span {
    /* color: #0d6efda1 !important; */
    background-color: #479eff !important;

}

.text-custom {
    color: rgb(84 117 133);
}

/* .uf-input-group {
    display: inline-flex;
}

.field_with_errors {
    display: inline;
}

.field_with_errors .form-control {
    border: red solid 1px;
    display: inline-block;
} */

.uf-input-group .form-control:focus {
    box-shadow: unset;
    background: #ffffff;
}

.uf-btn-primary {
    background: #9da4b1;
    color: #fff;
}

.uf-btn-primary:hover {
    background: #5097ff;
    color: #fff;
}

.uf-form-check-input:checked {
    background-color: #842029;
    border-color: #842029;
}

.uf-social-login .uf-social-ic+.uf-social-ic {
    margin-left: 15px;
}

.uf-social-ic {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uf-social-ic:hover {
    background: #842029;
}

.uf-social-ic:hover i {
    color: #fff;
}