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

LOGIN PAGE FORM STYLING

==========================================================
*********************************w********************** */

@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");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Raleway", sans-serif;
  transition: all 0.3s linear;
}

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

MAIN TOP TEXT

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

.main-topText {
  transform: none;
  padding: 2.6rem;
}

.main-topText > img {
  height: 2rem;
  transform: translateY(10dvh);
}

.main-topText > h5 {
  font-size: 1rem;
}
.main-topText > h5,
.main-topText > p {
  transform: translateY(13dvh);
}

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

RESPONSIVENESS

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

@media (width <=767px) {
  .main-topText {
    transform: none;
    padding: 0rem;
    margin-top: 2rem;
    text-align: center;
  }

  .main-topText > img {
    height: 2rem;
    display: none;
    transform: none;
  }

  .main-topText > h5 {
    font-size: 1.1rem;
  }
  .main-topText > h5,
  .main-topText > p {
    text-align: center;
    transform: none;
  }
}

.img-loginForm {
  background-color: #f8f7fa;
  height: 100vh;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-loginForm > img {
  height: 100vh;
}

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

RESPONSIVENESS

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

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

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

  .img-loginForm::before,
  .img-loginForm::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-loginForm */
    border-radius: 50% 50% 0 0;
  }

  .img-loginForm::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-loginForm::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-loginForm > img {
    height: 25vh;
    animation: none;
  }
}

@media (width <= 575px) {

  .section-img {
    display: block;
  }
  .img-loginForm {
    height: auto;
    margin: 0;
    position: relative;
    background-color: #f8f7fa;
  }

  .img-loginForm::before,
  .img-loginForm::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-loginForm */
    border-radius: 50% 50% 0 0;
  }

  .img-loginForm::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-loginForm::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-loginForm > img {
    height: 25vh;
    animation: none;
  }
}

/* ========

LOGIN FORM STYLING

======= */

.form-login {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  height: 80dvh !important;
  justify-content: start !important;
}

.form-login > form {
  width: 80%;
}

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

INPUT BOX STYLING

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

input {
  transition: all 0.2s linear;
  color: #00adb6 !important;
  font-family: "syne", sans-serif;
  border-radius: 4px !important;
}

input:focus {
  border: 0.6px solid #000 !important;
  box-shadow: 0px 1px 3px #ccc !important;
  outline: none !important;
  color: #444444 !important;
}

.input-group {
  position: relative;
}

.input-group label {
  position: absolute;
  top: -11px;
  left: 13px;
  padding: 4px;
  background-color: #ffff;
  color: #00adb6;
  font-size: 10px;
  border: 0px solid black;
  transition: 0.2s;
  pointer-events: none;
}
.input-group input[type="email"]::placeholder {
  font-size: 13px;
}

.input-group input[type="email"]:focus + label {
  top: -14px;
  background-color: #444444;
  line-height: 0;
  padding: 7px 4px;
  border: 0px solid black;
  border-radius: 0;
  color: white;
}

.input-group input[type="password"]::placeholder {
  font-size: 13px;
}

.input-group input[type="password"]:focus + label {
  top: -14px;
  background-color: #444444;
  line-height: 0;
  padding: 7px 4px;
  border: 0px solid black;
  border-radius: 0;
  color: white;
}

.invalid .input-group input[type="email"]:focus + label {
  top: -14px;
  background-color: crimson;
  line-height: 0;
  padding: 7px 4px;
  border: 0px solid crimson;
  border-radius: 0;
  color: white;
}


.invalid .input-group input[type="password"]:focus + label {
  top: -14px;
  background-color: crimson;
  line-height: 0;
  padding: 7px 4px;
  border: 0px solid crimson;
  border-radius: 0;
  color: white;
}


.form-group .btn-login {
  background-color: #00adb6;
  color: white;
  text-transform: uppercase;
  font-family: "syne", sans-serif;
  border-radius: 4px;
}

.form-group .btn-login:hover {
  background-color: #00949c;
  color: white;
}

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

RESPONSIVENESS

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

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

.social-links {
  position: relative;
}

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

.text-follow {
  transform: translateY(-6dvh);
}

.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("/public/app-assets/images/social-icos/WA-bg.png");
  height: 130px;
  width: 340px;
  background-size: cover;
  color: black;
  text-align: center;
  position: absolute;
  left: -8em;
  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: -11rem;
  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("/public/app-assets/images/social-icos/WA-bg.png");
  height: 130px;
  width: 340px;
  padding: 0.5em;
  font-family: "syne", sans-serif;
  position: absolute;
  left: -13em;
  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;
}

.registerSocial {
  transform: translateY(18vh);
}
.OnLargescreenCenter {
  transform: translateY(12dvh);
}

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

RESPONSIVENESS

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

@media (width <= 767px) {
  .OnLargescreenCenter {
    transform: none;
  }
  .main-topText {
    transform: none;
  }
  .registerSocial {
    transform: translateY(12vh);
  }
}

@media screen and (max-width: 575px) {

  .OnLargescreenCenter {
    transform: none;
  }

  .btn1 .tooltiptext1 {
    visibility: hidden;
    background-image: url("/public/app-assets/images/social-icos/WA-bg.png");
    height: 130px;
    width: 340px;
    background-size: cover;
    color: black;
    text-align: center;
    position: absolute;
    left: -6.2em;
    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: -9.4em;
  }
  .btn3 .tooltiptext3 {
    visibility: hidden;
    background-image: url("/public/app-assets/images/social-icos/WA-bg.png");
    height: 130px;
    width: 340px;
    color: black;
    text-align: center;
    background-color: whitesmoke;
    position: absolute;
    left: -12.8em;
    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;
  }
}
