*,
*::before,
*::after {
  box-sizing: border-box;
}

/*=== google fonts ===*/

@import "//fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap";

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {  
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;    
    background: #000;
    color: #333333; 
    margin: 0;
}

.login-area {
    padding: 50px 0;
}

.login-area-inner {
    padding: 0 15px;
    position: relative;
    z-index: 9;
    background: #fff;
}

.login-area-inner:after {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - 153px);
    left: 0;
    bottom: 0;
    background-image: url(/images/main-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.login-item {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
    min-height: calc(100vh - 176px);
    padding: 50px 0;
}

.login-item-inner {
    margin-bottom: 20px;
    text-align: center;
}

.login-item-inner img {
    max-width: 100%;
}

.login-item-inner2 {
    margin: auto 0;
}

.login-item-inner2 h2 {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 27px;
}

.login-item-inner3 {
    margin-bottom: 26px;
    position: relative;
    z-index: 9;
}

.login-item-inner3 input {
    font-size: 16px;
    font-weight: 500;
    color: #929292;
    display: flex;
    align-items: center;
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    border-radius: 10px;
    border: none;
    padding-left: 60px;
    padding-right: 15px;
    border-radius: 8px;
}

.login-item-inner3 img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 21px;
    max-width: 100%;
}

.login-item-inner4 {
    padding-top: 10px;
    text-align: center;
}

.login-item-inner4 button {
    font-size: 21px;
    font-weight: 800;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    border: none;
    width: 200px;
    height: 52px;
    cursor: pointer;
    border-radius: 8px;
    padding-left: 36px;
    padding-right: 21px;
    margin: 0 auto 31px;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.login-item-inner4 button img {
    max-width: 100%;
}

.login-item-inner4 button:hover {
    opacity: .8;
}

.login-item-inner4 a {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
}

.login-item-inner4 a:hover {
    color: #000;
}

.login-item2 {
    padding: 30px 15px;
    background: #fff;
}

.login-item2 p {
    font-size: 13px;
    font-weight: 400;
    color: #898989;
    text-align: center;
}

.login-item2 p span {
    margin: 0 20px;
}

.login-item2 p a {
    color: #898989;
}

.login-item2 p a:hover {
    color: #000;
}

.error{
    color:black;
}



@media screen and (max-width: 675px) {


    .login-item {
        min-height: calc(100% - 192px);
    }


}

