/*!
 * -------------------------------------------------------
 * Project Name : Prop Funding
 * Author       : SoftwareZon
 * Author URL   : https://softwarezon.com
 * Version      : 1.0.0
 * Created      : 2025
 * Description  : Contains global CSS used by authentication.
 * File         : authentication.css
 * -------------------------------------------------------
 * ©2025 SoftwareZon. All Rights Reserved.
 * -------------------------------------------------------
 */
/*----------------------------------------------------
  01. Authentication All Pages Styles
----------------------------------------------------*/
.header-shape {
  top: -290px;
  right: 28%;
}
.header-shape-2-container {
  position: absolute;
  top: -112px;
  right: 24%;
}
.header-shape-container:after {
  right: 10%;
  top: -397px;
}
.authentication-card {
  max-width: 560px;
  width: 95%;
  border: 1px solid rgba(var(--white), 0.1);
  backdrop-filter: blur(10px);
  background: rgba(var(--white), 0.05);
  border-radius: 10px;
  padding: 40px;
  position: relative;
}
.auth-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(var(--white), 0.05);
  border: 1px solid rgba(var(--white), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: rgba(var(--white), 0.8);
}
.auth-close-btn:hover {
  background: rgba(var(--brand), 1);
  color: rgba(var(--white), 1);
  border-color: rgba(var(--brand), 1);
  transform: rotate(90deg);
}
.auth-close-btn svg {
  width: 18px;
  height: 18px;
}
.talk-item .talk-item-icon img {
  max-width: 22px;
}
.contact-circle-shape-right {
  top: 260px !important;
}
.contact-circle-center:after {
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media all and (min-width: 1920px) {
  .header-shape-container:after {
    right: 16%;
  }
}
@media all and (min-width: 3100px) {
  .header-shape-container:after {
    right: 19%;
  }
}
@media all and (min-width: 5000px) {
  .header-shape-container:after {
    right: 24%;
  }
}
@media all and (max-width: 991px) {
  .header-shape-container:after {
    right: -10%;
  }
}
@media all and (max-width: 767px) {
  .authentication-card {
    padding-left: 18px;
    padding-right: 18px;
  }
  .header-shape-container:after {
    right: -40%;
  }
}
