@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    src: url(./../assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}

@font-face {
    font-display: swap;
    font-family: 'Pacifico';
    src: url(./../assets/fonts/Pacifico/Pacifico-Regular.ttf);
}

@font-face {
    font-display: swap;
    font-family: 'Satisfy';
    src: url(./../assets/fonts/Satisfy/Satisfy-Regular.ttf);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* div{
    border:solid;
} */
body {
    width: 100%;
    height: 100vh;
    margin-block: 0;
    margin: 0;

    font-family: 'Montserrat';
    background-color: var(--bg-color);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: var(--primary);

}

h2 {
    font-weight: 500;
}

h3 {
    font-weight: 500;
}

h4 {

    font-weight: 400;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: unset;
    cursor: pointer;
}

button {
    width: 200px;
    height: 60px;
    background-color: var(--highlight);
    border-radius: 10px;
    border: none;
    color: var(--primary);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, opacity 0.3s ease-in-out, border-color 0.3s ease-in-out;
    cursor: pointer;
font-size: 18px;

}

button:active {
    transform: scale(0.95);
}

button:hover {
    background-color: var(--secondary);
}


input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    color: var(--primary);
    font-family: 'Montserrat';

}

input::placeholder {
    font-family: 'Montserrat';
    color: var(--primary);
}

input:focus,
input:active {
    outline: none;
    box-shadow: none;
    border: none;
    background-color: transparent;


}

input:focus::placeholder {
    opacity: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: var(--primary) !important;
    transition: background-color 9999s ease-out;
    color: var(--primary);
}

textarea {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    font-family: 'Montserrat';
    color: var(--primary);
    resize: none;
}

textarea::placeholder {
    color: var(--primary);
}

textarea:focus,
textarea:active {
    outline: none;
    box-shadow: none;
    border: none;

}

textarea:focus::placeholder {
    opacity: 0;
}

a:active {
    transform: scale(0.95);
}

.showCheckBox{
display:flex !important;
}

:root {
    /* --bg-color: rgb(0, 0, 0); */
    --bg-color: #01151b;
    /* --primary: rgb(132, 84, 2);*/
    /*--primary:rgb(242, 112, 144);*/
    /* --highlight:rgb(244, 124, 154); */
    /* --primary:rgb(55, 178, 245); */
    /* --primary: #A8C5CD; */
    --primary: #D6D6D6;
    /* --primary: rgb(185, 170, 153); */
    --secondary: #274C78;
    --bg-header: rgba(255, 255, 255);
    /* --highlight: rgb(255, 149, 0); */
    --highlight: #D07A7E;
    /* --highlight: #f7b25d; */
    /* --text-bg: rgba(255, 255, 255, 0.145); */
    --text-bg: rgba(0, 157, 255, 0.063);

}

/*;rgb(4, 79, 123);*/

@media(max-width: 500px){
    button{
        width: 160px;
        height: 50px;
        font-size: 16px;
    }
}