@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");

body {  
    width: 100vw;
    height: 100vh;
    font-family: 'Poppins',sans-serif;
    background-color: #080710;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.main{
    display: flex;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width:200px;
    background-color: rgba(255,255,255,0.13);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
    border-radius: 10px;
    padding: 10px 30px;
}
form *{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
    color: #ffffff;
}
.header{
    text-align: center;
}
.header3{
    margin-top: -10px;
}
.field{
    width: 100%;
    position: relative;
    margin: 10px 0;
}
input{
    box-sizing: border-box;
    display: flex;
    height: 50px;
    width: 100%;
    background-color: rgba(255,255,255,0.07);
    border-radius: 3px;
    padding-left: 10px;
    font-size: 14px;
    font-weight: 300;
}
input[type='submit']{
background-color: #ffffffab;
color: #080710;
font-weight: bold;
}

::placeholder{
    color: #ffffff;
}

.error{
    color: red;
}

.bi-eye-slash{
    position: absolute;
    right: 8px;
    top: 17px;
    cursor: pointer;
}

small {
    display: block;
    margin-top: 4px;
  }
@media only screen and (max-width: 600px) {
    body{
        overflow: visible;
    }
    .main{
        display: flex;
        flex-direction: column;
    }
    img{
        width: 260px;
    }

  }
  
  
  