﻿
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Regular.woff2') format('woff2'), url('/fonts/Poppins-Regular.woff') format('woff'), url('/fonts/Poppins-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-l';
    src: url('/fonts/Poppins-Light.woff2') format('woff2'), url('/fonts/Poppins-Light.woff') format('woff'),url('/fonts/Poppins-Light.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Zermatt';
    src: url('/fonts/Zermatt-Light.woff2') format('woff2'), url('/fonts/Zermatt-Light.woff') format('woff'), url('/fonts/Zermatt-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Zermatt', serif;
    letter-spacing: 1px;
}

body {
    font-family: 'Poppins', sans-serif;
}

.request-title {
    font-family: 'Zermatt', serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    color: rgb(0, 96, 111);
    margin: 30% 0px 24px;
    letter-spacing: 1px;
}

.request-container {
    max-width: 400px;
    margin: 60px auto;
}

.form-control, .form-select {
    width: 100%;
    background-color: transparent;
    /*border-color: #ccc;*/
    border-radius: 0;
    border-color: rgb(6, 96, 111);
    padding: 8px 8px;
    padding-left: 0;
    color: rgb(6, 96, 111);
    border: none;
    border-bottom: 1px solid rgb(6, 96, 111);
    border-bottom-color: rgb(6, 96, 111);
    letter-spacing: 1px;
    margin: 16px 0px 0px 0px;
    box-shadow: none;
    font-size: 14px;
}

    .form-control.is-invalid,
    .form-select.is-invalid,
    .form-control.invalid,
    .form-select.invalid {
        background-color: transparent;
        border: none;
        border-bottom: 1px solid rgb(240, 95, 39);
        color: rgb(6, 96, 111);
        box-shadow: none;
    }

    .form-control::placeholder {
        color: rgb(6, 96, 111);
        opacity: 60%;
    }

    .form-control.invalid::placeholder {
        color: rgb(240, 95, 39);
        opacity: 60%;
    }

    .form-control:focus, .form-select:focus, .form-control.is-invalid:focus, .form-select.is-invalid:focus, .form-control.invalid:focus, .form-select.invalid:focus {
        box-shadow: none;
        background-color: transparent;
        border: none;
        border-bottom: 1px solid rgb(200, 163, 121);
        border-bottom-color: rgb(200, 163, 121);
    }

.error-text {
    margin-top: 8px;
    color: rgb(240, 95, 39);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3.43px;
}

.form-text-bottom {
    width: calc(100% + 16px);
    border: 0px;
    padding: 8px;
    margin: 0px -8px;
    line-height: 1.5;
    color: rgb(102, 159, 169);
    font-size: 13px;
    margin-top: 24px;
}

.form-check {
    color: #c8a379;
    margin: 16px 0px 16px 0px;
    letter-spacing: 3.43px;
}

/* --- Base Checkbox Style (Unchecked) --- */
.form-check-input {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #c8a379;
    background-color: #fff; /* Ensures background is white */
}

    /* --- Style for when the checkbox is FOCUSED (clicked on) --- */
    /* This removes the default blue glow (box-shadow) from Bootstrap */
    .form-check-input:focus {
        border-color: #c8a379;
        box-shadow: none;
        outline: 0;
    }

    /* --- Style for when the checkbox is CHECKED --- */
    .form-check-input:checked {
        background-color: #c8a379; /* The black fill */
        border-color: #c8a379; /* Your custom border */
        background-image: none !important; /* Removes the checkmark */
        /* This single line creates the rounded, 1px white "gap" */
        box-shadow: inset 0 0 0 2px #fff;
        border-radius: 4px;
    }

.btn-custom {
    --foreground: #00606f;
    --background: transparent;
    --hover-color: #fcfaf8;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    margin-top: 23px;
    padding: 6px 32px 4px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3.5px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    word-spacing: 0px;
    color: rgb(0, 96, 111);
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgb(6, 96, 111);
    cursor: default;
    outline-color: rgb(6, 96, 111);
    appearance: button;
    -webkit-font-smoothing: antialiased;
    border-radius: 28px;
    transition: all 0.2s ease-in-out;
}

    .btn-custom:hover {
        background-color: rgb(6, 96, 111);
        border-color: rgb(6, 96, 111);
        color: rgb(255, 255, 255);
    }

.thanks-text {
    font-size: 14px;
    font-family: 'Poppins-l', sans-serif;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 1px;
    margin-top: 24px;
    color: rgb(0, 96, 111);
}

.home-button {
    border: 0;
    padding: 8px;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 72px;
    height: 72px;
    z-index: 101;
    background: transparent; /* optional if you want only the SVG visible */
    cursor: pointer; /* makes it clickable */
    color: black;
}

    .home-button:hover {
        color: black;
    }

    .home-button:active {
        color: black;
    }
