body {
    font-family: Arial, sans-serif;
    background-color: #333333; /* Dark grey background */
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.button-wrapper {
    margin-top: 20px;
}
/* 
input[type="file"] {
    display: none;
} */

button {
    /* padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    margin-left: 10px; */
    display: block;
            width: 40%;
            max-width: 200px;
            padding: 10px;
            margin: 10px auto;
            background-color: rgb(62, 183, 163);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            text-align: center;
            transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}
input {
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    font-size: 14px;
  }
  
  .logo {
    width: 80%;
    max-width: 300px;
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .button, .logo {
        width: 80%; /* Adjust width for smaller screens */
        max-width: none; /* Remove maximum width */
    }
}
.bold {
    font-weight: bold;
    color: white;
}

.text-white {
    color: white !important;
}
