@import url('https://fonts.googleapis.com/css2?family=Anton&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #121212 !important;
    font-family: "Montserrat", serif;
}

@font-face {
    font-family: 'MediaTimes';
    src: url(/fonts/media-times-font/Media\ Times\ .ttf);
    font-weight: normal;
    font-style: normal;
}

button,
a {
    position: relative;
    overflow: hidden;
}

.f-card {
    border-radius: 8px;
    padding: 30px;
    width: 700px;
    max-width: 100%;
    margin: 10px auto;
}

.f-card .form-box{
    max-width: 100%;
    height: 540px;
    max-height: 100%;
    margin: 20px auto;
    overflow-y: auto;
}

.form-box::-webkit-scrollbar {
    width: 6px;
}

.form-box::-webkit-scrollbar-track {
    background: transparent;
}

.form-box::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
}

.form-box::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.sig-h {
    text-align: center;
}

.sig-h h1 {
    color: #fff;
    font-family: 'MediaTimes';
    font-size: 55px;
}

.H-A {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 8px;
}

.H-A h4 {
    color: #ffffffb7;
    font-family: "Montserrat", serif;
    font-size: 20px;
    font-weight: 400;
}

.H-A a {
    color: #D1BB90;
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-size: 20px;
    cursor: pointer;
}

form {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}

input {
    margin-bottom: 10px;
    padding: 13px 10px;
    border-radius: 5px;
    background-color: #ffffff11;
    border: none;
    border: 1px solid rgba(255, 255, 255, 0.195);
    border-radius: 5px;
}

.two-labels {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 10px 0;
    position: relative;
}

.field-icon {
    position: absolute;
    bottom: 20%;
    right: 1%;
    font-size: 20px;
    cursor: pointer;
}

label {
    color: #ffffff8c;
    font-family: "Montserrat", serif;
    font-size: 17px;
    outline: 0;
}

label input {
    margin-top: 10px;
    color: white;
    font-family: "Montserrat", serif;
}

.name {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.name input {
    flex: 1;
    min-width: 0;
}

form p {
    font-family: 'Montserrat', serif;
    color: #ffffff8c;
    font-size: 16px;
    text-align: center;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.check_label {
    text-align: center;
    font-family: 'Montserrat', serif;
    color: #ffffff8c;
    margin-bottom: 13px;
}

input[type="checkbox"] {
    height: 16px !important;
    width: 16px !important;
    position: relative;
    bottom: -3px;
    cursor: pointer;
    border: #121212 solid 1px;
}

input[type="checkbox"]:checked {
    background-color: #D1BB90 !important;
    border-color: #D1BB90 !important;
}


/* Add a checkmark using pseudo-element */

input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 14px;
    color: rgb(0, 0, 0);
    position: absolute;
    top: 1px;
    left: 3px;
}

form button {
    font-family: 'Montserrat', serif;
    color: #121212;
    background-color: #D1BB90;
    padding: 20px;
    height: 100%;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: .2s;
}

form button:hover {
    background-color: #d2b781;
    color: #222222d3;
}

/*==================

Media Query

===================*/

@media screen and (max-width:768px){
    .f-card {
        padding: 30px 0px;
    }
    .sig-h h1 {
        font-size: 42px;
        margin-bottom: 35px;
        margin-top: 30px;
    }
}

@media screen and (max-width:570px){
    .name {
        gap: 0px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width:470px){
    .sig-h h1 {
        font-size: 32px;
    }
}




















