:root {
    --primary-color: #008BD0;
    --secondary-color: #002C55;
    --text-color: #616161;
    --accent-color: #81A71E;
    --background-color: #f4f4f4;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

.header {
    background-color: #fff;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header .logo {
    height: 50px;
    margin: 10px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 50px auto;
}

@media (max-width: 767px) {
    .container {
        margin: 20px auto;
        width: calc(100% - 20px);
    }
}

form {
    background: white;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    gap: 15px;
    padding: 30px;
    width: 100%;
}

label {
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

input,
select,
textarea {
    font-size: 16px;
    padding: 10px;
    border: 1px solid var(--secondary-color);
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 5px var(--accent-color);
}

textarea {
    resize: vertical;
}

.submit-btn {
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--accent-color);
}

.funny-graphic {
    text-align: center;
    margin: 30px 0;
    color: var(--text-color);
}

.funny-graphic img {
    /* max-width: 50%; */
}

.funny-graphic h1 {
    font-size: 1.8rem;
    color: #000000;
}

.funny-graphic p {
    margin-top: 10px;
    font-size: 1.4rem;
    color: var(--text-color);
}

@media (max-width: 767px) {
    .funny-graphic {
        margin: 10px 0;
    }

    .funny-graphic img {
        max-width: 80%;
    }

    .funny-graphic h1 {
        font-size: 1.2rem;
        color: #000000;
    }

    .funny-graphic p {
        margin-top: 10px;
        font-size: 1.1rem;
        color: var(--text-color);
    }
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: bold;
}

.success {
    background-color: var(--accent-color);
    color: white;
}

.error {
    background-color: #FF4C4C;
    color: white;
}

.alert.success {
    background-color: var(--accent-color);
}

.alert.error {
    background-color: #dc3545;
}