:root {
    --primary: #005aa9;
    --white: #FFFFFF;
    --black: #000000;
}

/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html,
body {
    height: 100%;
}

body {
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    height: 200vh;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.container {
    background-image: url("../images/body-bg.png");
    background-size: contain;
    width: 100%;
    max-width: 575px;
    height: 200vh;
    margin: 0 auto;
}

header {
    padding: 0 12px;
    padding-top: 50px;
}

header img {
    max-width: 350px;
    margin: 0 auto;
}

.form {
    width: 90%;
    background-color: #ffffff6c;
    backdrop-filter: blur(10px);
    padding: 50px 20px;
    margin-top: 50px;
    border-radius: 15px;
    max-width: 450px;
    margin: 50px auto;
}

form {
    text-align: center;
}

.form-row {
    display: flex;
    gap: 12px;
    /* margin-bottom: 14px; */
}

.form-row p {
    width: 100%;
}

.form-row p input {
    margin-bottom: 20px;
}

.form-row:last-child {
    justify-content: center;
    margin-bottom: 0;
    margin-top: 30px;
}

input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #e6d9b5;
    background: #ffffff;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    outline: none;
}

input::placeholder {
    color: #c5bfae;
}

input:focus {
    border-color: #d4a94a;
    box-shadow: 0 0 0 2px rgba(212, 169, 74, 0.2);
}

.wpcf7-submit {
    background: #8b1c0e;
    color: #ffffff;
    border: none;
    padding: 12px 26px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.wpcf7-submit:hover {
    background: #a92513;
    transform: translateY(-1px);
}

.wpcf7-submit:active {
    transform: translateY(0);
}

.wpcf7-spinner {
    display: none;
}

.small-logo img {
    max-width: 150px;
    margin: 0 auto;
}