* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #F7F7F9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    max-width: 600px;
}

@media (min-width: 768px) {
    .container {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .container {
        width: 40%;
    }
}

.logo {
    width: 150px;
    margin: 20px auto;
}

.thanks{
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

h1 {
    color: #00695C;
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    color: #333;
    font-size: 16px;
}

form {
    margin-top: 20px;
    margin-bottom: 20px;
}

label {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom:  10px;
}

input[type="file"] {
    border: 1px solid #CCC;
    padding: 10px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

input[type="text"] {
    border: 1px solid #CCC;
    padding: 10px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
}

button:hover {
    background-color: #45A049;
}

.instructions {
    font-size: 14px;
    color: black;
    margin-top: 10px;
    font-weight: bold;
}

footer {
    font-size: 14px;
    color: #333;
}

footer strong {
    font-size: 16px;
    display: block;
    margin: 5px 0;
}