﻿:root {
    --link-color: #6C4BB4;
    --primary-color-opacity: #e9d5ff;
    --white-shade: #f0f8ff;
    --secondary-color: #1e293b;
    --primary-padding: 8px;
    --pilled-shape-radius: 40px;
    --color: #CFA734;
}

@font-face {
    font-family: 'InriaSans';
    src: url("../fonts/InriaSans.ttf") format('woff2');
}

* {
    font-family: 'InriaSans', sans-serif !important;
    scroll-behavior: smooth;
}

.btn-gold {
    color: #fff;
    background-color: var(--color);
    border-color: var(--color);
}
.btn-gold:focus{
color: #fff;
    background-color: #d0a234;
    border-color: #d0a234;
    box-shadow: 0 0 0 0.2rem rgba(208, 162, 52, 0.5);
}

    .btn-gold:hover {
        color: #fff;
        background-color: #d0a234;
        transition: 0.5s;
    }


body {
    position: relative;
    z-index: -1;
    /*background-image: url(../images/bg.png);*/
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    /*background-color: #CFA734 !important;*/
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.bg-mainColor {
    background-color: #CFA734 !important;
}

/* Base styles for the form */
form {
    width: 90%;
    border-radius: 15px !important;
    transition: width 0.1s ease; /* Smooth transition for width changes */
}

/* For extra large screens (1200px and above) */
@media screen and (min-width: 1200px) {
    form {
        width: 25%;
    }
}

/* For large screens (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    form {
        width: 30%;
    }
}

/* For medium screens (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    form {
        width: 40%;
    }
}

/* For small screens (576px - 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
    form {
        width: 50%;
    }
}

/* For extra small screens (575px and below) */
@media screen and (max-width: 575px) {
    form {
        width: 90%;
    }
}


