body {
  margin: 0;
  background-color: #020124;
  color: white;
  font-family: sans-serif;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../landing_page/images/Photos/glowing-steel-industry-illuminated-futuristic-blue-generated-by-ai2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  filter: blur(6px); 
  
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1
}

.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}

.content-left,
.content-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-welcome,
.text-welcome-down {
  color: white;
}

.text-welcome{
  font-weight: bold;
  font-size: 6em;
  text-align: center;
  width: 90%;
}

.text-welcome-down{
  font-size: 3.95em;
  font-weight: 200;
  text-align: center;
}

.text-description-chipinventor{
  font-size: 1.2rem;
}

.form-signin {
  background-color: white;
  color: #212121;
  padding: 30px;
  border-radius: 10px;
  width: 360px;
  align-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding-top: 1.2rem;
}

.username-input, .password-input{
  border-radius: 2.5rem;
}

.form-group{
  margin-bottom: 5px;
}

.input-group-addon {
  align-content: center;
}

.form-signin-paragraph{
    color: #393838;
    font-weight: 500;
    font-size: 1.2rem;
}

.btn-submit-login{
  width: 100%;
}

.btn-forgot-password{
  display: flex;
  align-items: start;
  justify-content: left;
  width: 100%;
}

.input-group {
  position: relative;
}

.verify-capslock {
  display: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 0, 0, 0.1);
  color: red;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 5px;
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
  font-weight: bold;
}

.verify-capslock.visible {
  display: inline-block;
  z-index: 100000;
}

.verify-capslock i {
  margin-right: 4px;
  font-size: 0.8rem;
}

.cspinner_container {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}

.cspinner-icon {
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #000000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 992px) {
  .text-welcome {
    font-size: 4em;
  }

  .text-welcome-down {
    font-size: 2.5em;
  }

  .text-description-chipinventor {
    font-size: 1.2rem;
  }
}

@media (max-height: 700px) {
  .page-wrapper {
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .text-welcome {
    font-size: 2.5em;
  }

  .text-welcome-down {
    font-size: 1.8em;
  }

  .text-description-chipinventor {
    font-size: 1rem;
  }

  .flex-between-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .form-signin {
    width: 90%;
  }

  .col-text-presentation {
    width: 100%;
  }
}

.fa-eye{
  position: absolute;
  top: 28%;
  right: 4%;
  cursor: pointer;
  color: #9b9797;
  z-index: 1000;
}