a {
  text-decoration: none;
  color: inherit;
}

.raleway-font {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.raleway-font-small {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.raleway-font-smaller {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#title {
  font-size: 55px;
  opacity: 0.8;
}

#underTitle {
  font-size: 20px;
  opacity: 0.8;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#circuloNaranja {
  position: absolute;
  right: 100px;
  bottom: -250px;
}

#circuloVerde {
  position: absolute;
  left: 100px;
  top: 610px;
}

#circuloAzul {
  position: absolute;
  top: -400px;
  right: 320px;
}

#circuloRosa {
  position: absolute;
  top: -100px;
  left: -250px;
}

#animationDiv {
  width: 35%;
  height: 65%;
  position: absolute;
  left: 10%;
  top: 10%;
}

#textDiv {
  position: absolute;
  /* background-color: aqua; */
  right: 15%;
  width: 22%;
  top: 15%;
}

#buttonDiv {
  margin-top: 10%;
  width: 30%;
  height: 30%;
  position: absolute;
  right: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.button1 {
  color: white;
  text-decoration: none;
  background: #0091cd;
  border: 5px solid #0091cd;
  padding: 5% 15% 5% 15%;
  letter-spacing: 1.2px;
  font-size: 22px;
  border-radius: 40px;
  box-shadow: 2px 1px 3px rgba(0, 0, 0, 0.507);
  transition: background-color 0.15s ease,
    border-color 0.15s ease,
    margin-bottom 0.18s ease;
}

.button1:hover {
  background-color: #e95332;
  border-color: #e95332;
  margin-bottom: 10px;
  cursor: pointer;
}

#uploadFileButton:hover {
  transform: translateY(-5px);
}

button:disabled {
  background-color: grey;
  border-color: grey;
}

footer {
  left: 5%;
  right: 5%;
  position: absolute;
  bottom: 0px;
  height: 8%;
  /* background-color: yellow; */

  background-image: linear-gradient(to right, black 4%, rgba(255, 255, 255, 0) 1%);
  background-position: top;
  background-size: 40px 1px;
  background-repeat: repeat-x;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 0 8% 0 8%;
  font-size: 16px;
  opacity: 60%;
}

#loginDiv {
  position: absolute;
  top: 15%;
  background-image: url('/src/circuloAzul.png');
  background-position: 20% -250%;
  background-repeat: no-repeat;
  width: 22%;
  height: 60%;
  border-radius: 13px;
}

#lsBody {
  display: flex;
  height: 100vh;
  justify-content: center;
}

/* #loginForm label {
  justify-content: center;
  align-items: center;
  display: block;
  align-self: center;
  text-align: center;
} */

#loginForm {
  display: grid;
  grid-template-areas:
    "title"
    "emailLabel"
    "emailInput"
    "."
    "passwordLabel"
    "passwordInput"
    "."
    "submit"
    "error";
  grid-template-rows: auto 40px 26px 5px 40px 26px 45px 40px 20px;
  padding: 5% 12%;
  gap: 12px;
}

#redirectingDiv {
  margin-top: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* second form for the 2FA code */
#code2FAForm {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 5% 12%;
  max-width: 100vw;
  max-height: 100vh;
  overflow-y: auto;
}

#code2FAForm p {
  margin-bottom: 5%;
  font-size: 17px;
}

/* Remove arrows for Chrome, Safari, Edge */
#codeInput::-webkit-outer-spin-button,
#codeInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows for Firefox */
#codeInput[type=number] {
  -moz-appearance: textfield;
}

/* Remove border and outline */
#codeInput {
  font-size: 17px;
  border: 1px solid rgba(0, 0, 0, 0.288);
  /* Example custom border */
  outline: none;
  /* No blue focus outline */
  width: 40%;
  height: 28px;
  margin-bottom: 16%;
}

#verifyButton {
  width: 40%;
  padding: 3px 4px 3px 4px;
  margin-bottom: 10%;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.18s ease;
}

#verifyButton:hover {
  transform: translateY(-5px);
}

#loginError2 {
  color: red;
}

/* end second form for the 2FA code */

/* Reset password form */
#resetPasswordForm {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 5% 12%;
  max-width: 100vw;
  max-height: 100vh;
  overflow-y: auto;
}

#resetPasswordForm input {
  width: 70%;
  height: 100%;
  font-size: 16px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  border-radius: 7px;
  border-style: solid;
  border-width: 1.5px;
  padding: 3px 0 3px 6px
}

#resetPasswordForm h1 {
  margin-bottom: 1%;
  margin-top: 4%;
}

#resetPasswordForm p {
  margin-bottom: 10%;
  font-size: 17px;
}

/* Remove arrows for Chrome, Safari, Edge */
#codeInput::-webkit-outer-spin-button,
#codeInput::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows for Firefox */
#codeInput[type=number] {
  -moz-appearance: textfield;
}

/* Remove border and outline */

#resetPasswordButton {
  width: 60%;
  padding: 3px 2px 3px 2px;
  margin-bottom: 10%;
  display: block;
  transition: transform 0.18s ease, background-color 0.15s ease, border-color 0.15s ease;
  font-size: 19px;
}

#resetPasswordButton:hover {
  transform: translateY(-5px); /* lift up */
}

#newPassword  {
  margin-bottom: 6%;
}

#repeatPassword {
margin-bottom: 12%;
}

#loginError3 {
  color: red;
}

/* end reset password */

#loginError1 {
  grid-area: error;
  color: red;
}

#loginForm h1 {
  grid-area: title;
  margin-bottom: 25px;
}

#loginForm label[for="email"] {
  grid-area: emailLabel;
}

#loginForm input[type="email"] {
  grid-area: emailInput;
}

#loginForm label[for="password"] {
  grid-area: passwordLabel;
}

#loginForm input[type="password"] {
  grid-area: passwordInput;
}

#loginForm label {
  align-self: center;
  font-size: 20px;
}

#loginForm input {
  width: 90%;
  height: 109%;
  font-size: 17px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  border-radius: 7px;
  border-style: solid;
  border-width: 1.5px;
  padding: 3px 0 3px 6px
}

#loginForm button[type="submit"] {
  grid-area: submit;
  align-self: center;
  width: 40%;
  padding: 3px 4px 3px 4px;
}

.glass-container {
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  /* width: 100%; */
}

#uploadFileDivPos {
  height: 40%;
  width: 20%;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
}

#uploadFileDiv {
  /* background-color: pink; */
  display: grid;
  grid-template-areas:
    "."
    "title"
    "currentFolder"
    "."
    "uploadButton"
    "nameDisplay"
    "submitButton"
    "error";
  grid-template-rows: 5fr 2fr 1fr 6fr 20fr 10fr 10fr;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  justify-content: center;
  text-align: center;
}

#currentFolder {
  margin-top: 5px;
  font-size: 17px;
  grid-area: currentFolder;
}

#uploadErrorMessage {
  color: red;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 20px;
  grid-area: error;
}

/* File upload */
.custum-file-upload {
  height: 90px;
  width: 135px;
  display: flex;
  flex-direction: column;
  align-items: space-between;
  gap: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 2px dashed #cacaca;
  background-color: rgba(255, 255, 255, 1);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0px 48px 35px -48px rgba(0, 0, 0, 0.1);
}

.custum-file-upload .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custum-file-upload .icon svg {
  height: 50px;
  fill: rgba(75, 85, 99, 1);
}

.custum-file-upload .text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custum-file-upload .text span {
  font-weight: 400;
  color: rgba(75, 85, 99, 1);
}

.custum-file-upload input {
  display: none;
}

#uploadFileButton {
  font-size: 18px;
  grid-area: submitButton;
  margin-bottom: 20px;
  width: 60%;
  justify-self: center;
  height: 47px;
  padding: 0;
  transition: transform 0.12s ease;
}

/* End file upload */

#uploadTitle {
  padding: 0;
  margin: 0;
  grid-area: title;
}

#excelUpload {
  grid-area: uploadButton;
  justify-self: center;
}

#fileNameDisplay {
  grid-area: nameDisplay;
  text-justify: center;
}

#successfulPWText {
  font-size: 24px;
  font-weight: 800;
}

#redirectingText {
  font-family: Verdana, sans-serif;
  font-size: 20px;
  font-weight: 100;
}

/* UPLOAD PAGE */
#selectFTP {
  /*! background-color: aqua; */
  height: 35%;
  margin-top: 12%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 60%;
}
/* UPLOAD PAGE END */

/* ui-card */
.card-01 {
  width: 320px;
  /*! background: #fff480; */
  color: black;
  position: relative;
  border-radius: 2.5em;
  padding: 2em;
  transition: transform 0.4s ease;
  border: 1.5px solid #A9A9A9;
  box-shadow: 0.3px 0px 0.8px 0.1px #A9A9A9;
}

.card-01 .card-content-01 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5em;
  height: 100%;
  transition: transform 0.4s ease;
}

.card-01 .card-top-01, .card-01 .card-bottom-01 {
  display: flex;
  justify-content: space-between;
}

.card-01 .card-top-01 p, .card-01 .card-top-01 .card-title-01, .card-01 .card-bottom-01 p, .card-01 .card-bottom-01 .card-title-01 {
  margin: 0;
}

.card-01 .card-title-01 {
  font-weight: bold;
}

.card-01 .card-top-01 p, .card-01 .card-bottom-01 p {
  font-weight: 600;
}

.card-01 .card-bottom-01 {
  align-items: flex-end;
}

.card-01 .card-image-01 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.card-01:hover {
  cursor: pointer;
  transform: scale(0.97);
}

.card-01:hover .card-content-01 {
  transform: scale(0.96);
}

.card-center-text {
  transform: scale(1.05);
}

.card-01:active {
  transform: scale(0.9);
}

.card-center-text {
  font-size: 20px;
}
/* end ui-card */

#uploadSuccess {
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 99px;
}

#uploadSuccessText1 {
  font-size: 25px;
  text-align: center;
}
#uploadSucessText2 {
  color: green;
}


#purchaseOption {
  border-color: #FCC61D;
}

#salesOption {
  border-color: #67C090;
}

/* Drag area */
.custum-file-upload.highlight {
  border-color: #0091ff;
  background-color: #f0faff;
}
/* END Drag area */

input {
  outline: none;
}

/* Back button */
#backButton {
  font-size: 17px;
  margin-top: 2%;
  z-index: 3;
 display: flex;
 height: 3em;
 width: 120px;
 align-items: center;
 justify-content: center;
 background-color: #eeeeee4b;
 border-radius: 3px;
 letter-spacing: 1px;
 transition: all 0.2s linear;
 cursor: pointer;
 border: none;
 background: #fff;
}

#backButton > svg {
 margin-right: 5px;
 margin-left: 5px;
 font-size: 20px;
 transition: all 0.4s ease-in;
}

#backButton:hover > svg {
 font-size: 1.2em;
 transform: translateX(-5px);
}

#backButton:hover {
 box-shadow: 9px 9px 33px #d1d1d1, -9px -9px 33px #ffffff;
 transform: translateY(-2px);
}
/* END Back button */

/* Template button */
/* From Uiverse.io by andrew-demchenk0 */ 
.templateButton {
  --main-focus: #2d8cf0;
  --font-color: #323232;
  --bg-color-sub: #dedede;
  --bg-color: #eee;
  --main-color: #323232;
  position: relative;
  width: 150px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
  background-color: var(--bg-color);
  border-radius: 10px;
  overflow: hidden;
}

.templateButton, .templateButton__icon, .templateButton__text {
  transition: all 0.3s;
}

.templateButton .templateButton__text {
  transform: translateX(22px);
  color: var(--font-color);
  font-weight: 600;
}

.templateButton .templateButton__icon {
  position: absolute;
  transform: translateX(109px);
  height: 100%;
  width: 39px;
  background-color: var(--bg-color-sub);
  display: flex;
  align-items: center;
  justify-content: center;
}

.templateButton .svg {
  width: 20px;
  fill: var(--main-color);
}

.templateButton:hover {
  background: var(--bg-color);
}

.templateButton:hover .templateButton__text {
  color: transparent;
}

.templateButton:hover .templateButton__icon {
  width: 148px;
  transform: translateX(0);
}

.templateButton:active {
  transform: translate(3px, 3px);
  box-shadow: 0px 0px var(--main-color);
}
/* END Template button */

#templateDiv {
  position: absolute;
  z-index: 10;
  top: 10px;
  right: 10px;
}