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

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 460px;
    text-align: center;
}

h1 {
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

input[type="file"],
input[type="text"],
button {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 80%;
}

button {
    background-color: #7822ff;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #8226dd;
}

.captcha {
    width: 100%;
}

.captcha label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.flashes {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.flashes li {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
}

.flashes .error {
    background-color: #f8d7da;
    color: #721c24;
}

.flashes .success {
    background-color: #d4edda;
    color: #155724;
}

.loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    justify-content: center;
    align-items: center;
}

.loader-text {
    font-size: 24px;
    color: #333;
}

.description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
