body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 10px;
    background: url('../background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.container {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 100px;
    width: 300px;
    scale: 1.3;
}

h2 {
    text-align: center;
}

form {
    margin-top: 20px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 93%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

p.error {
    color: red;
    text-align: center;
}

.links {
    margin-top: 15px;
    text-align: center;
}

.links a {
    text-decoration: none;
    color: #007bff;
    margin: 0 5px;
}

.links a:hover {
    text-decoration: underline;
}

.corner-image {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 200px; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 15px; 
}