*{
    margin:0;
    padding: 0;
    box-sizing:border-box;
    font-family:'poppins',sans-serif;
}
body{
    display:flex;
    height:100vh;
    justify-content: center;
    align-items: center;
    padding:10px;
    /* background-color: rgb(32 101 173); */
    background: url('image/background.php') no-repeat;
    background-size:cover;
    background-position: center;
}
.container{
    max-width: 500px;
    width:100%;
    /* background:url('image/mon.jpg') no-repeat; */
    background-color:white;
    background-size: cover;
    background-position: center;
    padding:40px 60px;
    border-radius: 10px;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2), 0 10px 10px 0 rgba(0, 0, 0, 0.28);
}
img{
    margin-left:-45px;
    margin-top: -45px;
}
.container .title{
    /* margin-top:10px; */
    font-size:32px;
    text-align: center;
    font-weight:500;
    color: rgb(133, 132, 132);
    position:relative;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
/* .container .title::before{
    content: '';
    position:absolute;
    left:0;
    bottom:0;
    height:3px;
    width:30px;
    background:#9b59b6;
} */
.container form {
    /* display:flex;
    flex-wrap: wrap; */
    justify-content: space-between;
    margin:20px 0 12px 0;
}
form .input_box{
    margin-bottom: 20px;
    width: calc(100% / 1 - 60px);
  
}

.input_box .details{
    font-weight:600;
    margin-bottom:5px;
    color:#8e8d91;
    font-family:'Times New Roman', Times, serif;
    font-size:16px;
}
.input_box input{
    height:30px;
    width:100%;
    outline:none;
    border:none;
    margin-top: 5px;
    /* border-bottom: 1px solid #b1b0b4; */
    /* border-radius: 5px; */
    background: transparent;
    /* border:1px solid #ccc; */
    padding-left:15px;
    font-size:16px;
    color:#525151;
    box-shadow:  0 3px 3px 0 rgba(0, 0, 0, 0.28);
}

/* .user_details .input_box input:focus,
.user_details .input_box input:valid{
    border-color:white;
} */
form .button{
    height:45px;
    margin:45px 50px;
}
/* form .button input{
    height: 100%;
    width: 100%;
} */
.btn{
    width:100%;
    height:45px;
    background:rgb(32 101 173);
    border:none;
    outline:none;
    border-radius: 4px;
    cursor: pointer;
    font-size:16px;
    color:#e4e4e4;
    font-weight: 500;
    box-shadow:0 0 15px rgba(0, 0, 0, .5);
}
.message{
    margin-bottom:12px;
    width:100%;
    border-radius: 5px;
    padding:8px;
    text-align: center;
    background-color: rgb(214, 45, 45);
    color:white;
    font-size:18px;
}
.color{
    color:red;
}
.error{
    color:rgb(180, 5, 5);
    font-size:12px;
    font-weight:bold;
}
.forget{
    font-size:14px;
    font-weight:500;
    text-align: center;
    text-decoration:none;
    margin-top:25px;
    color: rgb(73, 73, 73);
}
.forget:hover{
    text-decoration:underline;
}
.login-register {
    font-size:14.5px;
    font-weight:500;
    text-align: center;
    margin-top:25px;
    color: #474a4c;
}
.log-link{
    color:#6c706c;
    font-weight:500;
    text-decoration: none;
    
}
.log-link:hover{
    text-decoration: underline;
}
.login-register p a{
    color:rgb(22, 93, 168);
    font-weight:500;
    text-decoration: none;
    font-size:15px;
}
.login-register p a:hover{
    text-decoration:underline;
}
.register-link{
    color:rgb(32 101 173);
    cursor: pointer;
}
 @media (max-width: 584px) {
    .container{
        max-width: 100%;
    }
    form .input_box{
        margin-bottom: 15px;
        width:100%;
    }
    .container form .user_details{
        max-height:300px;
        overflow-y: scroll;
    }
 }
