@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*, span, a, label {
  font-family: "Montserrat", sans-serif !important;
}

html, body{
  padding: 0;
  margin: 0;
}
.title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.error {
    padding: 0;
    margin: 0;
    color: red !important;
    display: flex;
}
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2vh 2vw;
  border-radius: 15px;
  margin-top: 10vh;
}

.card .logo {
  width: 70%;
  height: auto;
  margin: 0 auto;
}

.entry {
  display: flex;
  flex-direction: column;
}

.entry-item {
  width: 100%;
  height: 40px;
  margin-bottom: 4vh;
  display: flex;
  flex-direction: column;
}

.entry-item input {
  width: 85%;
  height: 100%;
  border: 1px solid var(--primary-color);
  outline: none;
  font-size: 1rem;
  padding: 1vh 1vw;
  border-radius: 5px;
}

.entry-item input:focus {
  outline: none;
}

.entry-item input::placeholder {
  color: var(--primary-color);
}

.entry-item label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 5px;
  text-align: left !important;
}

.buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#next {
  width: 60%;
  padding: 10px 10px;
  background-color: #7C9EAE;
  color: white !important;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin: 0 auto;
  text-transform: capitalize;
}

.card-footer {
  margin: 0 auto;
}

.info-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
}

:root {
  --primary-color: #12263C;
}

.row {
  display: flex;
  overflow-y: hidden !important;
  overflow-x: hidden !important;
  height: 100vh;
}

::-webkit-scrollbar{
  display: none;
}

.col {
  flex: 1;
}

.form-col{
  margin-top: 5%;
}

.image-col {
  position: relative;
}

.image-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.4);
}

.image-col::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.image-col img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.backdrop {
  position: relative;
}

.backdrop::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 99%;
  background-color: gray;
  opacity: 1;
  mix-blend-mode: multiply;
}

/* mi etilo  */

.form-col {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro {
  display: none;
}

.divider {
  display: none;
}

.create {
  display: none;
}

.entry .buttons {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.form-container {
  margin-top: -30px;
}

.entry-item .password-label #forgotPassword {
  display: none;
}

.entry-item .error {
  display: block !important; 
}

.right-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #ffffff;
    padding: 3.5rem;
}

.entry-item {
  margin-block: 2rem;
}

.entry-item .error p {
  padding: 0;
  margin: 0;
  color: red !important;
  display: flex;
}

.localAccount .error p{
	padding: 0;
  margin: 0;
  color: red !important;
  display: flex;
	flex-direction: column;
}

.entry-item label {
  color: #12263C !important;
}

.entry-item input{
  height: 40px;
  border-radius: 7px;
  border: 1px solid rgba(128, 128, 128, 0.411);
  margin-block: 7px;
  padding-inline-start: 10px;
}

.entry-item #signInName::placeholder {
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
}

.entry-item .password-label {
  text-align: left !important;
  color: #12263C !important;
}

.entry-item #password::placeholder {
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
}

.login-form {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.login-form h5 {
    margin-top: 0;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    color: #12263C !important;
}

.login-form .form-label {
    text-align: left;
    display: block;
}

.right-section .pass-reset {
  text-decoration: none !important;
  color: #12263C !important;
}

.login-form .form-control {
    text-align: left;
    margin-bottom: 25px;
    width: 100%;
}

.login-form img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.login-form button {
    width: 50%;
    padding: 10px;
    background-color: #7C9EAE;
    color: white !important;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin: 0 auto;
}

@media (max-width: 565px) {
    .hero-container {
        flex-direction: column;
    }

    .right-section {
        margin: 20px;
        padding: 20px;
    }

    .left-section {
        height: 250px;
    }

    .login-form {
        max-width: 100%;
    }

    .login-form button {
        width: 100%;
    }
}

.error.pageLevel{
  display: block !important;
}