/* body a,
html a {
    text-decoration: none;
    outline: 0;
    transition: opacity 150ms linear, color 150ms linear, background 150ms linear;
    color: #fff;
}

a:hover {
    color: #fff;
}

.wraplogin {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #002b56;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px
}

.login-logo img {
    max-width: 150px;
}

.wraplogin .wrap {
    max-width: 500px;
    margin: 0 auto;
    color: #fff;
}

.wraplogin .wrap h1 {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.wraplogin .wrap input {
    padding: 14px 7px;
}

.wraplogin .wrap .form_group {
    margin-bottom: 20px;
}

.wraplogin .wrap input:focus {
    border-color: #ddd;
    box-shadow: none
}

.btn-login {
    line-height: 1.42;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3em;
    display: inline-block;
    width: 100%;
    cursor: pointer;
    border: 1px solid transparent;
    color: #fff;
    margin-bottom: 10px;
    background: #ff4f33;
    padding: 7px 14px;    border-radius: 0.375rem;
}

.bottom {
    display: flex;
    justify-content: space-between;
} */


body{
    background: url('../images/bg.jpeg');
    background-size: cover;
    background-position-y: -80px;
    font-size: 16px;
}
#wrapper{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#form-login{
    max-width: 400px;
    background: rgba(0, 0, 0 , 0.8);
    flex-grow: 1;
    padding: 30px 30px 40px;
    box-shadow: 0px 0px 17px 2px rgba(255, 255, 255, 0.8);
}
.form-heading{
    font-size: 25px;
    color: #f5f5f5;
    text-align: center;
    margin-bottom: 30px;
}
.form-group{
    border-bottom: 1px solid #fff;
    margin-top: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap:10px
}
/* .form-group i{
    color: #fff;
    font-size: 14px;
    padding-top: 5px;
    padding-right: 10px;
} */
.form-input{
    background: transparent;
    border: 0;
    outline: 0;
    color: #f5f5f5;
    flex-grow: 1;
}
.form-input::placeholder{
    color: #f5f5f5;
}
#eye i{
    padding-right: 0;
    cursor: pointer;
}
 
.form-submit{
    background: transparent;
    border: 1px solid #f5f5f5;
    color: #fff;
    width: 100%;
    text-transform: uppercase;
    padding: 6px 10px;
    transition: 0.25s ease-in-out;
    margin-top: 30px;
}
.form-submit:hover{
    border: 1px solid #54a0ff;
}