/* General styles */
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.outer {
    background-color: #0d3384;
    width:100%;
}

.container {
    margin: 0 auto;
    padding: 40px 20px;
}

.title {
    font-weight: 600;
    font-size: 24px;
    margin: 0 0 30px;
}

.form__field {
    margin: 0 0 20px;
}

.form__field label {
    display: block;
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
}

.form__field input[type="file"] {
    display: block;
    margin: 0;
}

.button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #007aff;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.button:hover {
    background-color: #0052cc;
}

.message {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    background-color: #cccccc;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.message.error {
    background-color: #ff4136;
    color: #fff;
}
