@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,500;1,300;1,400&display=swap');

.logo {
    width: 100%;
    max-width: 200px;
    margin: auto;
    display: block;
    position: absolute;
    top: -37px;
    background-color: #aaacae;
    padding: 10px;
    border-radius: 23px;
    left: 40px;
}
body {
    margin: 0;
    padding: 0;
    /* background: url(images/bg-2.jpg ); */
    background: url(images/cooptaxi_background.png );    
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Montserrat', sans-serif;
    background-position: center;
    height: 100vh;
    position: relative;
}
body:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #00000080;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.login-box {
    max-width: 400px;
    background: #f7f7f7a6;
    color: #000;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
    box-sizing: border-box;
    border-radius: 35px;
    width: 100%;
    padding: 37px 24px;
}
.login-box h1 {
    margin: 0;
    padding: 0 0 14px;
    text-align: center;
    font-size: 22px;
    padding-top: 10px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-bottom: 1px solid;
}
.login-box p {
    margin: 0;
    font-weight: bold;
    padding: 10px;
    padding-left: 0px;
}
.login-box input{
	margin-left: 10px;
    margin-bottom: 20px;
    width: 90%;

}

.login-box input[type="text"], input[type="password"] {
    background: transparent;
    outline: none;
    height: 40px;
    font-size: 16px;
    width: 100%;
    margin-left: 0px;
    border: 1px solid  #000;
    border-radius: 26px;
    padding: 14px;
    box-sizing: border-box;
    color: #000;
    margin-bottom: 5px;
}

.login-box input[type="submit"] {
    border: none;
    outline: none;
    height: 40px;
    background: #fb2525;
    color: #fff;
    font-size: 18px;
    border-radius: 20px;
    width: 100%;
    margin-left: 0px;
    margin-top: 10px;
}
.login-box form a {
    display: block;
    text-align: center;
}

.login-box input[type="submit"]:hover{
    cursor: pointer;
    background: #ffc107;
    color: #000;

}
.login-box a {
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    color: black;
    padding-left: 10px;

}
.login-box a:hover{
    color:   #fb2525;

} 

