@import url('style.css');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container-login {
  display: flex;
  max-width: 1000px;
  width: 90%;
  height: 600px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.login-left {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo img {
  height: 200px;
  margin: auto 30px;
  /* background: url('../img/logo-black.jpeg') center center no-repeat; */
}

.login-left h2 {
  font-size: 28px;
}

.login-left p {
  font-size: 0.90em;
  color: var(--font-ter);
  /* margin: 30px 0; */
}

form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

form label {
  font-weight: 600;
  font-size: 0.9em;
}

form input[type="text"],
form input[type="password"] {
  padding: 8px;
  border-radius: 6px;
  border: 1px solid var(--marca-prin-2);
  font-size: 0.95em;
  width: 100%;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  width: 100%;
}

/* .password-wrapper .toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1em;
  cursor: pointer;
} */

.options {
  display: flex;
  justify-content: space-between;
  font-size: 0.85em;
}

.login-msg {
  font-size: 12px;
}
.login-btn {
  background: var(--marca-prin-1);
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  /* font-size: 1em; */
}

.login-btn:hover {
    background: var(--marca-prin-1);
}

.login-right {
  border-radius: 6px;
  flex: 1;
  background: var(--marca-prin-1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.login-msg {
  color: red;
}

.overlay {
  padding: 40px;
  text-align: center;
  max-width: 400px;
}

.overlay h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 0.95em;
  margin-bottom: 30px;
}

.overlay img {
  max-width: 100%;
  border-radius: 10px;
}
.password-container {
    position: relative;
}
.toggle-password {
  position: absolute;
  right: 10px;
  top: 8px;
  background-color: transparent;
  z-index: 101;
  border: none;
}

.toggle-password i {
  pointer-events: none;
}

@media (max-width: 768px) {
     body {
        flex-direction: column;
        height: unset;
    }
    .container {
        box-shadow: none;
    }
    .login-right {
        display: none!important;
    }

    .login-left {
        width: 100%;
        padding: 40px 20px;
    }
}