@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
   --primary: #BFA1A7;
   --primary-rgba-30: rgba(191, 161, 167, 0.3);
   --dark: #000;
}

body {
   font-family: "Prompt", sans-serif !important;
   background: #BFA1A7BD;
   background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(191, 161, 167, 1) 100%);
   background-size: cover;
}

.text-primary {
   color: var(--primary) !important;
}

.bg-primary {
   background-color: var(--primary) !important;
}

.text-dark {
   color: var(--dark) !important;
}

.btn-secondary {
   background-color: #D9D9D9;
   border: 0;

   &:hover {
      background-color: var(--primary) !important;
      color: #fff !important;
   }
}

.box-container {
   display: flex;
   align-items: center;
   height: 100%;

   @media screen and (min-height: 700px) {
      height: 100vh;
   }
}

.box-shadow-home {
   box-shadow: 0px 0px 10px 1px #00000040;
   border-radius: 30px;
   position: relative;
}

.border-img-main {
   border-top-left-radius: 30px;
   border-bottom-left-radius: 30px;

   @media screen and (max-width: 768px) {
      border-top-right-radius: 30px;
      border-bottom-left-radius: 0;
      height: 400px;
      object-fit: cover;
      object-position: top;
   }
}

input[type=text],
input[type=email],
input[type=checkbox] {
   border: 1px solid #C8C8C8;
}

input[type=text],
input[type=email] {
   border-radius: 25px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=date]:focus,
input[type=checkbox]:focus,
select:focus {
   box-shadow: 0 0 0 0.25rem var(--primary-rgba-30) !important;
   border-color: var(--primary) !important;
}

label {
   font-size: 14px;
   color: var(--dark);
   font-weight: 300;
}

.text-policies {
   font-size: 12px;
}

.cursor-pointer {
   cursor: pointer;
}

.form-check-input:checked {
   background-color: var(--primary);
   border-color: var(--primary);
}