*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.contanier{
    width: 100%;
    height: 100vh;
    background: url(background1.png);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contanier .login{
    width: 400px;
    height: 400px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: -1px 4px 28px 0px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 65px 40px 40px;
    position: relative;
     top: 120px;
}
.login .user{
    width: 80px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}
.login h1{
    color: #fff;
    font-size: 24px;
    text-align: center;
    padding-bottom: 20px;
}
.login form label{
    color: #fff;
    font-weight: bold;
  
}
.login form input{
  
    background: transparent;
   
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
    border-left-style: none;
    border-left-color: inherit;
    border-left-width: medium;
    border-right-style: none;
    border-right-color: inherit;
    border-right-width: medium;
    border-top-style: none;
    border-top-color: inherit;
    border-top-width: medium;
    border-radius: 30px;
    
}
.login form button{
    color: #000;
    font-size: 16px;
    background: #0033CC;
    width: 100%;
    border-radius: 5px;
    outline: none;
    padding: 10px;
    border: 1px solid #000;
    margin-bottom: 20px;
    cursor: pointer;
      border:1px solid #009999;
    height: 22px;
}

.login .line-or{
    text-align: center;
    position: relative;
}
.login .line-or span{
    color: #fff;
}
.login .line-or span::after{
    content: '';
    position: absolute;
    width: 115px;
    height: 1px;
    background: #e8e8e8;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.login .line-or span::before{
    content: '';
    position: absolute;
    width: 115px;
    height: 1px;
    background: #e8e8e8;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.login .btns{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.login .btns .btn img{
    width: 155px;
    border-radius: 1px solid;
    border-radius: 5px;
}
.login .btns .btn img.fb{
    border-color: #1f89d4;
}

.login .btns .btn img.google{
    background-color: #fb5859;
}
.login .signup{
    margin-top: 20px;
    font-size: 15px;
    color: #fff;
    text-align: center;
}
.login .signup a{
    color: #387aff;
    text-decoration: none;
    font-weight: bold;
}