
/* Login window */

.logincontainer {
    padding: 280px 0;
}

 .loginwindow {
    position: relative;
    max-width: 33%;
    margin: 0 auto;
    padding: 40px 40px;
    /* background: linear-gradient(170deg, #b72424  25%, #1fe07f73 95%); */
    /* background: #1a1a1a; */
    /* background: #1f1f1f; */
    background: linear-gradient(153deg, rgba(63,81,181,1) 9%, rgba(60,121,179,1) 92%);
    
    border-width: 2px;
    box-shadow: 0px 2px 25px 5px  #393939;
    border-radius: 6px;
}

.loginwindow img {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 5px 5px;
    border-radius: 100%;
}

.inputerror, .register {
    display: flex;
    justify-content: center;
}

.inputerror p {
    background: #850000;
    max-width: 80%;
    min-width: 80%;
    box-shadow: 0 5px 15px 5px #393939;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 8px;
}

.register p a {
    color: #fff;
    border-bottom: 2px dashed #fff;
    transition: all 300ms ease;
 
}

.register p a:hover {
    cursor: pointer;
    font-size: 18px;
}

.userdata input {
    outline: none;
    border: solid;
    border-radius: 20px;
    /* border-bottom: 2px solid #000; */
    width: 88%;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    padding: 15px 25px;
    color: #fff;
    margin: 10px 0;

}

.userdata input::placeholder {
    color: #f1f1f1;
    font-size: 16px;
    font-weight: 500;
}

[hidden] {
    display: none;
}