/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full-screen background */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('bg.webp') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: #fff;
}

/* Logo styling */
.logo {
    margin-bottom: 20px;
}

/* Centered, slightly transparent box */
.container {
    background: rgba(0, 0, 0, 0.6); /* Black with transparency */
    padding: 30px;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
}

/* Input fields styling */
.container input[type="text"],
.container input[type="email"],
.container input[type="password"],
.container select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

/* Submit button styling */
.container button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.container button:hover {
    background-color: #218838;
}

/* Links styling */
.container a {
    display: inline-block;
    margin: 10px 5px;
    color: #17a2b8;
    text-decoration: none;
    font-size: 14px;
}

.container a:hover {
    text-decoration: underline;
}
