
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200;12..96,300;12..96,500&family=Poppins:ital,wght@0,400;0,500;0,600;1,300&display=swap');

body{    
    font-family: 'Poppins', sans-serif;
 
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

/* Login */
.black_top_background {
    background: #100101;
    padding: 5px;
}

.black_top_background img {
    margin-left:45%;
    width: 100px;
    
}



.form_wrapper {
    margin-top: 12%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form_wrapper2 {
    margin-top: 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


form {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

label {
    margin-top: 10px;
    color: #100101;
    font-weight: bold;
}

input {
    margin-top: 5px;
    padding: 10px;
    width: 300px; 
}
input::placeholder {
    text-align: center;
}

input[type="submit"]  {
    display: inline-block;
    margin-top: 10px;
    padding: 10px;
    width: 300px; 
    background-color: #9747ff;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

input[type="submit"] :hover {
    background-color: #bb8df7;
    color: #fff;
}
.error-message {
    background-color: #FFD2D2;
    color: #FF0000;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: center;
}
.success-msg {
 
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: center;
    

}


@media screen and (max-width: 600px) {
    .form_wrapper {
        margin-top: 33%; 
    }
    .black_top_background img {
        margin-left:40%;
        
    }
    .form_wrapper2 {
        margin-top: 20%; 
    }

  
}
@media screen and (max-width: 295px) {
    form {
        display: flex;
        flex-direction: column;
        align-items: center; 
        max-width: 600px; 
        width: 100%; 
    }    
    
}