*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    
}

body{
   
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('logodddimg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
 }

form {
   
    width: 420px;
    background:transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color:black;
    border-radius: 10px;
    padding: 30px 40px;
}
form h2{
    font-size: 30px;
    text-align: center;
    color: #e61010;
    
}

label {
    display: block;
    margin-bottom: 10px;
}

input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
    background: transparent;
    border-radius: 10px;
    
}

input[type="submit"] {
    width: 100%;
    height: 40px;
    background: #fff;
    border:none ;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #e91a1a;
    font-weight: 600;
}
.error-message {
    color: red; /* Set the text color to red */
    font-size: 14px; /* Set the font size */
    margin-top: 5px; /* Add some top margin to separate it from the form */
}
