body {
    margin: 0;
    padding: 0;
    background-image: url('9.png'); /* Replace with your background image URL */
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center; /* Center the container horizontally */
    align-items: center; /* Center the container vertically */
    height: 100vh;
}

.container {
    width: 320px;
    background-color: rgba(255, 255, 255, 0.9); /* Example background color for container */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-left: 1050px;
}

.container h1 { 
    color: #333;
    margin-bottom: 20px;
}

.container input[type="text"],
.container input[type="password"],
.container button {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.container button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

.container button:hover {
    background-color: #45a049;
}

.register-forget {
    margin-top: 20px;
    color: #666;
    text-decoration: none;
    text-align: center;
}

.register-forget a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
}

.register-forget a:hover {
    color: #333;
    text-decoration: underline;
}
