body {
    background-color: #fce4e4; /* Light red background */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#logo{
    width: 80%;
    height: 30%;
    display: flex;
    margin: 0 auto 15px auto;
    
}

#container {
    background-color: #fff;
    padding: 30px;
    border: 2px solid #d32f2f; /* Dark red border */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    align-items: center;
    display: flex;
    width: 200px;
    height: 280px;
    justify-content: center;
    flex-direction: column;
}

h2 { color: #d32f2f; }

input{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin: 10px 0px;
    border: 1px solid #ccc;
    margin-right: 5px;
    align-items: center;
}

/* Mandatory field visual indicator */
input:required {
  border-left: solid red 3px;
    
} 

button {
    background-color: #d32f2f;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button:hover { background-color: #b71c1c; }