@font-face {
  font-family: "MyFont";
  src: url("FONT.otf") format("opentype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #d8cfbf;
}

body {
    background: #6e6a52;
    font-family: Georgia, serif;
    color: white;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: normal;
}

.description {
    text-align: center;
    line-height: 2;
    font-size: 22px;
    margin-bottom: 50px;
    font-family: "MyFont";
}

input[type="number"],
.guest-input {
    width: 100%;
    height: 65px;

    border: none;
    outline: none;

    background: #d8cfbf;

    border-radius: 999px;

    padding: 0 28px;

    font-size: 18px;

    color: #111;

    margin-bottom: 18px;

    transition: .25s;
}

input[type="number"]:focus,
.guest-input:focus {
    transform: scale(1.01);
}

input::placeholder {
    color: rgba(255,255,255,0.95);
}

.guest-card {
    background: rgba(255,255,255,0.08);

    border-radius: 25px;

    padding: 20px;

    margin-bottom: 20px;

    animation: fadeIn .3s ease;
}

.guest-title {
    margin-bottom: 15px;
    font-size: 18px;
}

.attendance-section {
    margin-top: 30px;
}

.attendance-title {
    margin-bottom: 20px;
    font-size: 20px;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 15px;

    cursor: pointer;
}

a {

 color: black;

}
.checkbox-row input {
    width: 20px;
    height: 20px;
}

.checkbox-row span {
    font-size: 18px;
}

#submitBtn, #backBtn {
    width: 100%;
    height: 65px;

    margin-top: 35px;

    border: none;

    border-radius: 999px;

    background: #d8cfbf;

    color: #111;

    font-size: 20px;

    cursor: pointer;

    transition: .25s;
}

#submitBtn:hover {
    transform: translateY(-2px);
}

#successMessage {
    margin-top: 25px;
    text-align: center;
    font-size: 18px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    h1 {
        font-size: 40px;
    }

    .description {
        font-size: 16px;
    }

    input[type="number"],
    .guest-input,
    #submitBtn {
        height: 60px;
    }
}