/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #023f71, #02485b);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
}

.logo h1 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.content p {
    font-size: 1rem;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    margin-bottom: 10px;
    font-size: 1rem;
}

form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    width: 80%;
    max-width: 300px;
}

form button {
    padding: 10px 20px;
    border: none;
    background-color: #ff8c00;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #ffa500;
}

footer {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.8;
}
