body {
  margin: 0;
  background: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh6kfNy14mnQ0Egs_1rKXITpRS43DBonNoM_gkwRyIfcZaKaR29IJaZaRCmfOZov6fZKp5N6BShhzNxmKRYuYHOmF8BtLehc4Wjl5cAfD2LbrwGXL8xyJbhIPvHNXOW0BzNvp1YCjxReXBN1PafKyOVwR7gIgJzknAIQIV83EC40M5pQx8o57Omd9hpNdY/s16000/bg1.png');
  font-family: "Georgia", serif;
  color: #fff;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 100px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 15px;
    color: #aaa;
}

.page-header span {
    color: #caa45f;
}

/* ===============================
   FORM
================================= */

.form-box {
    background: #141414;
    padding: 50px;
    border: 1px solid rgba(202, 164, 95, 0.4);
}

.form-group {
    margin-bottom: 30px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

label span {
    color: #caa45f;
}

/* Inputs */

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    background: #1c1c1c;
    border: 1px solid #333;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #caa45f;
}

/* Name Row */
.row {
    display: flex;
    gap: 20px;
}

.row .form-group {
    flex: 1;
}

/* Textarea */
textarea {
    min-height: 120px;
    resize: vertical;
}

/* Button */

.submit-btn {
    padding: 14px 40px;
    background: transparent;
    border: 1px solid #caa45f;
    color: #caa45f;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #caa45f;
    color: #000;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {

    .page-header h1 {
        font-size: 30px;
    }

    .row {
        flex-direction: column;
    }

    .form-box {
        padding: 30px 20px;
    }

}