*{
    margin: 0;
    padding: 0;
}

.input{
    height: 36px;
    width: 286px;
    margin-top: 16px;
    background-color: darkslategray;
    color: white;
    font-size: 16px;
    text-align: center;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
    border: none;
    border-bottom: 6px dotted greenyellow;
}

.input::placeholder {
    color: white;
    opacity: 1;
}

.form{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.img_logo{
    height: 100px;
    width: 266px;
    position: relative;
    right: 6px;
}

.email{
    position: relative;
}

.email i{
    position: absolute;
    right: 8px;
    top: 26px;
    color: rgb(0, 217, 255);
    font-size: 21px;
}

.password{
    position: relative;
}

.password i{
    position: absolute;
    right: 6px;
    top: 26px;
    color: rgb(0, 217, 255);
    font-size: 21px;
}

form .submit{
    height: 36px;
    width: 106px;
    position: relative;
    top: 16px;
    font-size: 21px;
    background-color: red;
    color: white;
    border-radius: 16px;
    border: 3px double yellow;
}

.forgot_password{
    position: relative;
    top: 2px;
}