body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color: #f5f5f5;
    background:url(img/banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    

}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: black;
}

form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: 50px;
   
    
}

form label {
    margin-bottom: 5px;
}

form input[type="email"], form input[type="password"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid black;
    border-radius: 5px;
    background-color: transparent;

    
}


form input[type="submit"] {
    padding: 10px;
    margin-top: 10px;
    background-color: #b98100bd;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #45a049;
}

p {
    text-align: center;
    margin-top: 20px;
    color: #fff;
}

p a {
   color: rgb(255, 251, 0);
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}