body
{
    font-family: Tahoma, Geneva, sans-serif;
    color: #fff;
    background: url(images/22.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
}
a
{
    color: yellow;
    text-decoration: blink;
    font-family: Tahoma, Geneva, sans-serif;
    margin-left: 15%;
}
.forget
{
    background: rgba(44,62,80,0.7);
    padding: 3%;
    width: 240px;
    height: 340px;
    margin-left: 180px;
    margin: 0 auto;
    margin-top: 120px;
}
h2
{
    margin-top: 10%;
    margin-left: 5%;
    margin-right: 5%;
}
input[type=text]
{
    display: inline-block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #58bce6;
    font-family: 'Play', sans-serif;
    font-size: 100%;
    font-weight: 50%;
    padding: 5% 0;
    transition: border 0.5s;
    text-align: center;
    color: white;
}
input[type=button]
{
    border: none;
    background: white;
    color: black;
    font-size: 115%;
    line-height: 130%;
    padding: 4% 0;
    border-radius: 12px;
    cursor: pointer;
    width: 75%;
    margin-left: 25px;
    margin-right: 25px;
}
input[type=button]:hover
{
    background: black;
    color: white;
}
::placeholder {
    color:aliceblue;
    opacity: 0.8; 
}

#msg {
    visibility: hidden;
    min-width: 250px;
    
    background-color:yellow;
    color: #000;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    right: 30%;
    top: 30px;
    font-size: 17px;
	margin-right:50px;
}

#msg.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {top: 0; opacity: 0;} 
    to {top: 30px; opacity: 1;}
}

@keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {top: 30px; opacity: 1;} 
    to {top: 0; opacity: 0;}
}

@keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: 0; opacity: 0;}
}