/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@font-face{
  font-family: 'Elle Futura';
  src: url('/halink-admin/public/login_form/font/elle-futura-book.otf');
}
/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Elle Futura', sans-serif;
}

body {
    background: url(../b2.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    color: #FFF;
    text-align: center;
}

.wrapper {
    max-width: 400px;
    margin: 10% auto;
    min-height: 500px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    /* box-shadow: 0px 5px 5px #ffffff2b, -5px -13px 20px #ffffff2b; */
    box-shadow: 0 0px 15px #ffffff2b;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.logo {
    width: 180px;
    margin: auto;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* border-radius: 50%; */
    /* box-shadow: 0px 0px 3px #5f5f5f,
        0px 0px 0px 5px #ecf0f3,
        8px 8px 15px #a7aaa7,
        -8px -8px 15px #fff; */
}

.wrapper .name {
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 1.3px;
    padding-left: 0;
    color: white;
    text-transform: uppercase;
    }

.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 15px;
    color: #666;
    padding: 10px 15px 10px 10px;
    /* border: 1px solid red; */
    margin-right: 17px;
}

.wrapper .form-field input:focus,
.wrapper .form-field input:active,
.wrapper .form-field input:focus-visible,
.wrapper .form-field input:focus-within{
    background: transparent;
}

.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: inset 8px 8px 8px #ffffff, inset -8px -8px 8px #fff;
    background: white;
    position: relative;
}

.wrapper .form-field .far {
    color: #555;
}


.wrapper .form-field .fas {
    color: #555;
}

.wrapper .btn {
    box-shadow: none;
    width: 200px;
    height: 40px;
    background-color: #8fc74a;
    color: #fff;
    border-radius: 25px;
    /* box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #0e0d0d; */
    letter-spacing: 1.3px;
    font-size: 15px;
    padding: 10px 10px 32px 10px;
    margin-top: 20px !important;
    }

.wrapper .btn:hover {
    background-color: #79be25;
}

.wrapper a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #03A9F4;
}

.wrapper a:hover {
    color: #039BE5;
}
.alert {font-size: 15px;color: white;float: left;width: 100%;}
.alert i {font-size: 18px;}
.wrapper-flex {
    float: left;
    width: 100%;
}
form#login {
    padding: 0 !important;
    margin: 40px 0 0 0!important;
}
.show_password {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
.show_password.active:before {
    content: '\f070';
}

.forgot-password{
    text-align: end;
}

.forgot-password a{
   color: #fff;
}

.forgot-password a:hover{
    color: #79be25;
 }

@media(max-width: 380px) {
    .wrapper {
        margin: 30px 20px;
        padding: 40px 15px 15px 15px;
    }
}

