@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/fira_300.woff2") format("woff2");
}

@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/fira_400.woff2") format("woff2");
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Fira Sans", sans-serif;
            font-size: 24px;
            background-image: url('bg.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #333;
        }

        .container {
            background-color: transparent;
            border-radius: 10px;
            padding: 50px;
            padding-top: 29%;
            max-width: 700px;
            width: 90%;
            text-align: center;
        }

        .header {
            margin-bottom: 30px;
        }

        .logo {
            /* max-width: 120px;
            height: auto;
            margin-bottom: 20px; */
        }

        .logo-text {
            /* font-size: 24px;
            font-weight: bold;
            color: #c41e3a;
            margin-bottom: 20px; */

            margin-left: 15px;
            margin-bottom: 14px;

        }

        .content {
            margin-bottom: 30px;
            line-height: 1.4;
        }

        .content p {
            margin-bottom: 15px;
            /* font-size: 14px; */
            color: #555;
        }

        .form-container {
            /* background-color: #f8f8f8; */
            padding: 25px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .form-container h3 {
            margin-bottom: 20px;
            font-size: 16px;
            color: #333;
        }

        .form-group {
            margin-bottom: 15px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: bold;
            color: #333;
            text-align: left;
        }

        input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #0074be;
            border-radius: 4px;
            font-family: Arial, sans-serif;
            font-size: 16px;
            resize: vertical;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        textarea:focus {
            outline: none;
            border-color: #0074be;
            box-shadow: 0 0 5px rgba(196, 30, 58, 0.3);
        }

        textarea {
            min-height: 120px;
        }

        .button-container {
            margin-top: 20px;
        }

        button {
            background-color: white;
            color: #333;
            padding: 10px 40px;
            border: 2px solid #0074be;
            border-radius: 4px;
            font-size: 15px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.5s ease;
        }

        button:hover {
            background-color: #eeeeff;
        }

        button:active {
            transform: scale(0.98);
        }

        .message-status {
            margin-top: 20px;
            display: none;
            padding: 12px;
            border-radius: 4px;
            font-size: 14px;
        }

        .message-status.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }

        .message-status.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: block;
        }

        @media (max-width: 600px) {
            .container {
                padding: 30px 20px;
            }

            .logo {
                max-width: 100px;
            }

            .logo-text {
                margin-left: 0;
            }

            .content p {
                font-size: 16px;
            }
        }