/* Basic styling for body */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ededed;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Container for the content */
.container {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style for the logo */
.logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

/* Header styles */
h1 {
    color: #004a6d;
}

/* Style for the form inputs */
input, select, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

/* Popup styles */
#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #17aeb5;
    color: white;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 20px;
    z-index: 1000;
}

/* Button styles */
.button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #17aeb5;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.button:hover {
    background-color: #004a6d;
}
