/* Reset CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@font-face {
  font-family: 'Inter';
  src: url(../dist/fonts/custom/Inter-VariableFont_opsz\,wght.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}
.container {
  margin: 0 auto;
  max-width: 1320px;
}
@media (max-width: 800px) {
  .container {
    max-width: 800px;
  }
}
body {
  font-family: Inter, sans-serif;
  font-weight: 400;
}
.btn {
  width: fit-content;
  padding: 14px 24px;
  border-radius: 500px;
  overflow: hidden;
  border: 0;
}
.btn.primary {
  background-color: #9b2632;
  color: white;
}
.auth-page .background-gradient {
  background: url(../dist/images/background.png) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  position: fixed;
  top: 0;
  left: 0;
}
.auth-page .background-story {
  background: url(../dist/images/storyIcons.png) no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 1200px;
  width: calc(100% - 40px);
  height: calc(100vh - 40px);
  min-height: 800px;
  position: fixed;
  top: 20px;
  left: 20px;
}
.auth-page .background-overlay {
  background-color: rgba(38, 50, 56, 0.16);
  width: 100%;
  height: 100vh;
  min-height: 800px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.auth-page .form-wrap {
  width: 580px;
  height: fit-content;
  border-radius: 25px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0px 20px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  left: calc(50% - 580px/2);
  z-index: 20;
  padding-top: 57px;
  padding-bottom: 82px;
  margin-top: 120px;
}
.auth-page .form-wrap .logo {
  width: 150px;
  height: 130px;
  min-width: 150px;
  min-height: 130px;
  max-width: 150px;
  max-height: 130px;
  margin: 0 auto;
  margin-bottom: 58px;
}
.auth-page .form-wrap .logo img {
  width: 100%;
  height: 100%;
}
.auth-page .form-wrap .title {
  font-weight: 600;
  font-size: 28px;
  line-height: 33.89px;
  text-align: center;
  margin-bottom: 30px;
  color: #313131;
}
.auth-page .form-wrap form {
  padding: 0 84px;
}
.auth-page .form-wrap form input[type="text"],
.auth-page .form-wrap form input[type="password"] {
  all: unset;
  background-color: #FCE8EA;
  border-radius: 500px;
  overflow: hidden;
  color: #E85062;
  height: 45px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16.94px;
  padding: 0 27px;
  width: calc(100% - 27px * 2);
  margin-bottom: 30px;
}
.auth-page .form-wrap form input[type="text"]::placeholder,
.auth-page .form-wrap form input[type="password"]::placeholder {
  color: #C98C92;
}
.auth-page .form-wrap form .check-box-and-forgot-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.auth-page .form-wrap form .check-box-and-forgot-wrap .check-box-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.auth-page .form-wrap form .check-box-and-forgot-wrap .check-box-wrap input[type="checkbox"] {
  appearance: none;
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  border-radius: 7px;
  border: 1px solid #B1B1B1;
  background-color: white;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.auth-page .form-wrap form .check-box-and-forgot-wrap .check-box-wrap input[type="checkbox"]::after {
  content: "✔";
  font-size: 18px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease-in-out;
}
.auth-page .form-wrap form .check-box-and-forgot-wrap .check-box-wrap input[type="checkbox"]:checked {
  background-color: #E85062;
  border-color: #E85062;
}
.auth-page .form-wrap form .check-box-and-forgot-wrap .check-box-wrap input[type="checkbox"]:checked::after {
  transform: translate(-50%, -50%) scale(1);
}
.auth-page .form-wrap form .check-box-and-forgot-wrap .check-box-wrap label {
  font-weight: 400;
  font-size: 14px;
  line-height: 16.94px;
  color: #313131;
}
.auth-page .form-wrap form .check-box-and-forgot-wrap a {
  font-weight: 400;
  font-size: 14px;
  line-height: 16.94px;
  letter-spacing: 0%;
  text-decoration: underline;
  color: #313131;
}
.auth-page .form-wrap form .btn-wrap {
  display: flex;
  justify-content: center;
}
.auth-page .form-wrap form .btn-wrap .btn {
  font-weight: 700;
  font-size: 14px;
  line-height: 16.94px;
  width: 140px;
}
