/* *************************************************************************************************
                       THIS CSS FILE INCLUDES*

===================== BACKGROUND PICTURE STYLING =======================
===================== MAIN TEXTS & LINKS STYLING =======================
===================== FORM & INPUT FIELDS STYLING ======================
===================== BUTTON & TRADEMARK STYLING =======================


**************************************************************************************************/

/* **************************************************************************************************
===================== IMPORTED FONTS FROM GOOGLE FONTS =======================
************************************************************************************************** */

@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans&family=Syne&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap");
/* **************************************************************************************************
                ===================== BODY STYLING =======================
************************************************************************************************** */

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Syne", sans-serif;
  overflow-x: hidden !important;
}
/* **************************************************************************************************
            ===================== MAIN BACKGROUND STYLING =======================
************************************************************************************************** */

.img-form {
  background-color: #f8f7fa;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-form > img {
  height: 88vh;
  position: relative;
  /* animation: moveUpDown 2s infinite linear; */
  /* -webkit-animation: moveUpDown 2s infinite linear; Webkit animation */
}


/* ================

RESPONSIVENESS

================ */

@media (width <= 1220px) {
  .section-img {
    display: none;
  }
}

@media (width < 700px) {
  .section-img {
    display: block;
  }
  .img-form {
    height: auto;
    margin: 0;
    width: 100%;
    position: relative;
    background-color: #f8f7fa;
  }

  .img-form::before,
  .img-form::after {
    content: "";
    position: absolute;
    bottom: -20px; /* Adjust the value to control the curve size */
    width: 100px; /* Adjust the value to control the curve width */
    height: 60px; /* Adjust the value to control the curve height */
    background-color: #00adb6; /* Same as the background color of .img-form */
    border-radius: 50% 50% 0 0;
  }

  .img-form::before {
    left: -50px; /* Adjust the value to position the left curve */
    transform: rotate(-45deg); /* Adjust the value to control the curve angle */
    transform-origin: bottom left;
  }

  .img-form::after {
    right: -60px; /* Adjust the value to position the right curve */
    transform: rotate(45deg); /* Adjust the value to control the curve angle */
    transform-origin: bottom right;
  }

  .img-form > img {
    height: 25vh;
    animation: none;
  }
  body{
      overflow-x: hidden;
  }

}

@media (width < 575px) {
  .section-img {
    display: block;
  }
  .img-form {
    height: auto;
    margin: 0;
    position: relative;
    background-color: #f8f7fa;
  }

  .img-form::before,
  .img-form::after {
    content: "";
    position: absolute;
    bottom: -20px; /* Adjust the value to control the curve size */
    width: 100px; /* Adjust the value to control the curve width */
    height: 40px; /* Adjust the value to control the curve height */
    background-color: #00adb6; /* Same as the background color of .img-form */
    border-radius: 50% 50% 0 0;
  }

  .img-form::before {
    left: -50px; /* Adjust the value to position the left curve */
    transform: rotate(-45deg); /* Adjust the value to control the curve angle */
    transform-origin: bottom left;
  }

  .img-form::after {
    right: -50px; /* Adjust the value to position the right curve */
    transform: rotate(45deg); /* Adjust the value to control the curve angle */
    transform-origin: bottom right;
  }

  .img-form > img {
    height: 25vh;
    animation: none;
  }

}

/* **************************************************************************************************
        =============================== TEXT AND LOGO INSIDE FORMS BACKGROUND ===============================
************************************************************************************************** */

.text-logoInside .logoInside {
  height: 35px;
}

.text-logoInside .text-register,
.text-logoInside .text-register a {
  color: black;
  font-size: 0.9rem;
  text-align: start;
}
.text-logoInside .text-register a {
  color: #00adb6;
}

/* ==================== SOCIAL MEDIA ICON ====================== */

.social-links {
  position: relative;
}

.share {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: end;
  gap: 1em;
  transition: 0.4s ease-in-out;
}

.btn1 {
  position: relative;
  width: 2.3em;
  height: 2.3em;
  outline: none;
  box-shadow: none !important;
  border-radius: 5px;
  background-color: #ffd8d3;
  transition: 0.4s all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn1 img {
  height: 1.2rem;
}
.btn1 i {
  font-size: 1.4rem;
  color: rgb(221, 75, 57);
}

.btn1 .tooltiptext1 {
  visibility: hidden;
  background-image: url("/app-assets/images/social-icos/WA-bg.png");
  height: 130px;
  width: 340px;
  background-size: cover;
  color: black;
  text-align: center;
  position: absolute;
  left: -12em;
  font-family: "syne", sans-serif;
  padding: 0.5em;
  top: -8em;
  z-index: 1;
  transition: 0.1s ease-in-out;
}

.btn1 .tooltiptext1 .d-flex a > img {
  height: 55px;
  border: 2px solid #00adb6;
}

.btn1:hover .tooltiptext1 {
  transform: translateY(-1em);
  visibility: visible;
}

.btn1:hover {
  background: #f2beb8;
}
.btn1:hover i {
  color: rgb(221, 75, 57);
}

.btn1:hover img {
  fill: white;
}

.btn2 {
  position: relative;
  width: 2.3em;
  height: 2.3em;
  outline: none;
  border-radius: 5px;
  box-shadow: none !important;
  background-color: #dae6ff;
  transition: 0.4s all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn2 i {
  font-size: 1.2rem;
  color: rgb(74, 93, 255);
}

.btn2 .tooltiptext2 {
  visibility: hidden;
  position: absolute;
  left: -15rem;
  top: -8em;
  z-index: 1;
  transition: 0.1s ease-in-out;
}

.btn2:hover .tooltiptext2 {
  transform: translateY(-1em);
  visibility: visible;
}

.btn2:hover {
  background-color: #87c8e2;
}

.btn2:hover img {
  fill: white;
}

.btn3 {
  position: relative;
  width: 2.3em;
  height: 2.3em;
  outline: none;
  border-radius: 5px;
  background-color: #ceffe0;
  transition: 0.4s all;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn3 img {
  width: 1.4em;
}

.btn3 i {
  font-size: 1.4rem;
  color: #10bd4f;
}

.btn3 .tooltiptext3 {
  visibility: hidden;
  color: black;
  text-align: center;
  background-size: cover;
  background-image: url("/app-assets/images/social-icos/WA-bg.png");
  height: 130px;
  width: 340px;
  padding: 0.5em;
  font-family: "syne", sans-serif;
  position: absolute;
  left: -18em;
  top: -8em;
  z-index: 1;
  transition: 0.1s ease-in-out;
}

.btn3 .tooltiptext3 .d-flex a > img {
  height: 50px;
  width: 100%;
  border: 2px solid whitesmoke;
}

.btn3:hover .tooltiptext3 {
  transform: translateY(-1em);
  visibility: visible;
}

.btn3:hover {
  background-color: #91f5b5;
}

.btn3:hover img {
  fill: whitesmoke;
}

.btn1:hover form {
  backdrop-filter: blur(2px);
}

.btn1,
.btn2,
.btn3 {
  box-shadow: -2px 0px 7px rgb(204, 204, 204);
  border: none;
}

.btn1:hover,
.btn2:hover,
.btn3:hover {
  box-shadow: none;
}

/* ===================
RESPONSIVESNESS
===================== */

@media screen and (max-width: 575px) {
  .form-bg {
    overflow-x: hidden !important;
  }
  .btn1 .tooltiptext1 {
    visibility: hidden;
    background-image: url("/app-assets/images/social-icos/WA-bg.png");
    height: 130px;
    width: 340px;
    background-size: cover;
    color: black;
    text-align: center;
    position: absolute;
    left: -11.8em;
    padding: 0.5em;
    bottom: -9em;
    z-index: 1;
    transition: 0.1s ease-in-out;
  }

  .btn1 .tooltiptext1 .d-flex a > img {
    height: 55px;
    border: 2px solid #00abb1;
  }

  .btn2 .tooltiptext2 {
    left: -15em;
  }
  .btn3 .tooltiptext3 {
    visibility: hidden;
    background-image: url("/app-assets/images/social-icos/WA-bg.png");
    height: 130px;
    width: 340px;
    color: black;
    text-align: center;
    background-color: whitesmoke;
    position: absolute;
    left: -18.4em;
    bottom: -10em;
    box-shadow: 0px 3px 7px #ccc;
    z-index: 1;
    transition: 0.1s ease-in-out;
  }
  .btn3 .tooltiptext3 .d-flex a > img {
    height: 60px;
    width: auto;
    border: 2px solid whitesmoke;
  }
}

/* **************************************************************************************************
        =============================== INPUT BOXES STYLING ===============================
************************************************************************************************** */

input {
  transition: all 0.2s linear !important;
}

.custom-height {
  height: 2.5rem;
}

input,
select {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 0.8rem !important;

  color: #444444 !important;
}

input:focus {
  outline: none !important;
  box-shadow: 0px 2px 5px #ccc !important;
  color: #444444 !important;
  border: 1px solid #444444 !important;
  border-radius: 4px !important;
}
select:focus {
  outline: none !important;
  box-shadow: 0px 2px 2px #ccc !important;
  color: #00adb6 !important;
  border: 1px solid #00adb6 !important;
  border-radius: 4px !important;
}

.form-bg form {
  font-family: "Nunito Sans", sans-serif;
}

.input-group {
  position: relative;
}

.input-group label {
  position: absolute;
  top: -5px;
  left: 10px;
  padding: 0 5px;
  background-color: #ffff;
  color: #00adb6;
  font-size: 12px;
  line-height: 1;
  transition: 0.2s;
  pointer-events: none;
}

.input-group input[type="text"]:focus + label,
.input-group input[type="email"]:focus + label,
.input-group input[type="tel"]:focus + label {
  top: -11px;
  background-color: #444444;
  color: white;
}

.input-group input[type="text"]::placeholder,
.input-group input[type="email"]::placeholder,
.input-group input[type="tel"]::placeholder {
  font-size: 11px;
}

/* ================

RESPONSIVESSNESS

================ */

@media (width <= 2560px) {
  .form-section {
    padding-right: 2rem;
  }
}
@media (width <= 1220px) {
  .form-section {
    padding-right: 0rem;
  }
}

@media (width <= 767px) {
  .form-section {
    padding: 2rem;
  }
}

/* **************************************************************************************************
===============================DATE & TIME INPUT BOX STYLING/ FLATPICKER ===============================
************************************************************************************************** */

.flatpickr-input {
  padding: 10px;
  font-size: 16px;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.flatpickr-input:focus {
  outline: none;
  border-color: #00adb6 !important;
}

.flatpickr-calendar {
  border: 2px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

.flatpickr-day.selected {
  background-color: #007bff;
  color: #fff;
}

.flatpickr-time {
  outline: none !important;
  border: none !important;
  font-size: 1.1em;
}

/* **************************************************************************************************
=============================== RESGISTER NOW BUTTON STYLING ===============================
************************************************************************************************** */

.register-button {
  background-color: #00adb6;
  border: 1px solid #00adb6;
  padding: 7px 14px;
  width: 100%;
  transition: 0.3s;
  color: #fff;
  position: relative;
}

.register-button:hover {
  border: 1px solid #444444;
  background-color: transparent;
  color: #444444;
}

.register-button:focus {
  box-shadow: none;
  outline: none;
}

.text-follow {
  font-family: "Raleway", sans-serif;
}
