@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;display=swap');

*{
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    /* min-height: 100vh;
    height: 100%; */
    background-color: #fff;

    /* display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #224e5b;
    background-image: url(../images/sign_bg.jpg);
    background-blend-mode: overlay; */
}
.full-container{
    min-height: 100vh;
    height: 100%;
    background: url('../images/bg8.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #393737;
    background-blend-mode: overlay;
}

.forms{
    background-color: #1e222d;
    padding: 30px;
    border-radius: 8px;
}
.container .form{
    padding: 30px;
}

.forms .title{ 
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: rgb(239, 121, 11) !important;
    text-transform: uppercase;
}


.form .input-field{
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 30px;

}

.input-field input{
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0 35px;
    border: none;
    outline: none;
    font-size: 16px;
    border-bottom: 2px solid #ccc;
    border-top: 2px solid transparent;
    transition: all 0.2s ease;
}

.input-field i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 23px;
    transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid) ~ i{
    color: rgb(239, 121, 11);
}

.input-field i.icon{
    left: 0;

}

.input-field i.showHidePw{
    right: 0;
    cursor: pointer;
    padding: 10px;

}

.form .checkbox-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.checkbox-text .checkbox-content{
    display: flex;
    align-items: center;
}

.checkbox-content input{
    margin: 0 8px -2px 4px;
    accent-color: rgb(239, 121, 11);
}

.form .text{
    color: #fff;
    font-size: 14px;
}

.form a.text{
    color: rgb(239, 121, 11);
    text-decoration: none;
}

.form a:hover{
    text-decoration: underline;
}

.form .button{
    margin-top: 35px;
}


.button input:hover{
    background-color: rgb(239, 121, 11);
}

.form .login-signup{
    margin-top: 30px;
    text-align: center;
}