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

body {
    font-family: Arial, sans-serif;
    background-color: #fafeff;
    color: #000000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 20px 50px;
    height: 100%;
    width: 100%;
}

.logo {
    left: 20px;
    top: 20px;
    height: 120px;
    width: auto;
}

.status {
    font-size: 45px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #234c5a;
    text-align: center;
    height: 100%;
}

.contacts {
    height: 100%;
    width: 100%;
    background-color: #fafeff;
    padding: 40px 20px;
    text-align: center;
}

.contacts p {
    font-size: 12px;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.5;
}

.form-container {
    background-color: #edf1f3;
    padding: 20px;
    border-radius: 8px;
    /*box-shadow: 0 4px 8px  #efefef;*/
    width: 100%;
    max-width: 400px;
    height: 100%;
}

h1 {
    font-size: 30px;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    text-align: center;
    color: #234c5a;
}
form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 18px;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    margin-bottom: 5px;
    color: #234c5a;
}

input, textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

button {
    padding: 10px;
    border: none;
    background-color: #80bd01;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #77ad03;
}

.message-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.message-container h2 {
    color: #000000;
}

.message-container p {
    color: #333;
}

.btn-back {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
}

.btn-back:hover {
    background-color: #2980b9;
}

#response-message {
    display: none;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s;
}

#response-message.success {
    text-align: center;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #234c5a;
}

#response-message.error {
    text-align: center;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: red;
}

@media (max-width: 600px) {
    .form-container, .message-container {
        width: 90%;
    }
}
