body {
    font-family: Arial, sans-serif;
    background-color:white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    
}
.container {
    background: white;
    padding: 30px;
    padding-right: 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center;
}
.container img {
    width: 100px;
    margin-bottom: 20px;
}
.container h2 {
    margin-bottom: 20px;
}
.form-group {
    text-align: left;
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-weight: bold;
}
.form-group input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.btn {
    background: #28a745;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
}
.btn:hover {
    background: #218838;
}
.footer {
text-align: center;
padding: 10px;
background: #007bff;
color: white;
position: fixed;
width: 100%;
bottom: 0;
}
