* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Avenir;
    text-decoration: none;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}

.container{
    width: 400px;
    color: #0084D4;
    padding: 30px 40px;
    border-radius: 15px;
    background: rgba(208, 211, 212, .9);
}

.input-box{
    position: relative;
    width: 100%;
    height: 100%;
    margin: 30px 0;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 5px;
    color: #0084D4;
    border: 2px solid #0084D4;
    font-size: 16px;
    padding: 10px;
}

.input-box i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}
.error
{
  color : red;
  font-weight :bold;
}

.btn{
    width: 100%;
    height: 40px;
    background: #0084D4;
    color: #000;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    transition: 1s;
    margin-top: 20px;
}

.btn:hover{
    transform: scale(1.1);
}

