﻿@font-face {
    font-family: 'Beth Ellen';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/Assets/fonts_v1.0/BethEllen-Regular.ttf') format('truetype');
}


body {
    font-family: "Segoe UI", sans-serif;
    background-color: white;
    padding: 0;
}


.container {
    max-width: 700px;
    margin: 60px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: none;
}

.site {
    color: rgb(255, 126, 15);
    font-family: 'Beth Ellen', cursive;
    text-align: center;
    font-size: 18px;
}

@media (min-width: 700px) {
    .container {
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    body {
        background-color: #f5f5f5;
    }
}

h1 {
    text-align: center;
    color: #333;
    font-size: 136%;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    color: #444;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

    input[type="text"]:focus,
    input[type="email"]:focus,
    textarea:focus {
        border-color: rgb(255, 126, 15);
        outline: none;
    }

textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: rgb(255, 126, 15);
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

    .btn-submit:hover {
        background-color: rgb(188 90 7);
    }

.recaptcha-container {
    margin: 20px 0;
}

.errors {
    color: #ff752e;
    margin-bottom: 5px;
}
