

.wrapper-container{
    width: 100%;
    height: 100%;
    display: flex;    
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* background: #000; */
    background: #1B3C53;
}

.wrapper{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 500px;
    /* background: transparent; */
    border: 2px solid #184563   ;
    /* border: 2px solid black; */

    background: #1f4c6b;
    border-radius: 10px;
    transition: .5s;
}

.wrapper:hover{
    border: 2px solid #0ef;
    box-shadow: 0 0 20px #0ef,inset 0 0 20px #0ef;
    background: black;

}

.wrapper h2{
    font-size: 2em;
    text-align: center;
    color: #fff;
    transition: .5s;
}
.wrapper:hover h2{
    color: #0ef;
}

.input-box{
    position: relative;
    width: 320px;
    margin: 30px 0;
}

.input-box input{
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: 2px solid black;
    border-radius: 5px;
    outline: none;
    font-size: 1em;
    color: white;
    padding: 0 10px 0 35px;
    transition: .5s;

}
.wrapper:hover .input-box input{
    border: 2px solid #0ef;
    box-shadow: 0 0 10px #0ef,inset 0 0 10px #0ef;
}
.input-box input::placeholder{
    color: white;
}
.input-box .icon{
    position: absolute;
    left: 10px;
    color: #fff;
    font-size: 1.2em;
    line-height: 55px;
    transition: .5s;
}
.wrapper:hover .input-box .icon{
    color: #0ef;
}
.forget-pass{
    margin: -15px 0 15px;
}
.forget-pass a{
    text-decoration: none;
    color: #fff;
    font-size: .9em;
}
.forget-pass a:hover{
    text-decoration: underline;
}

.login-btn{
    position: relative;
    width: 100%;
    height: 45px;
    background: black;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    color: #fff;
    font-weight: 500;
    transition: .5s;

}
.wrapper:hover button{
    background-color: #0ef;
    color: #000;
    box-shadow: 0 0 20px #0ef;
}

.register-link{
    font-size: .9em;
    text-align: center;
    margin: 25px 0;
}
.register-link p{
    color: #fff;
}
.register-link p a{
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: .5s;
}
.wrapper:hover .register-link p a{
    color: #0ef;
}

.register-link p a:hover{
    text-decoration: underline;
}




/* for messages */
.message-container{
    position: relative;
    height:40px;
    background:aqua;
    width:96%;
    border-radius:5px;
    margin: 5px auto;
    display:flex;
    justify-content:center;
    align-items: center;

}
.message-django{
    font-family:sans-serif;
}
.django-message-btn{ 
    position: absolute;
    top:0;
    right:0;
    color: black;
    font-size:25px;   
}




