:root {
    --light-gray: #E3E8Ef;
    --medium-gray: #CDD5DF;
    --dark-gray: #9AA4B2;
    --stronger-gray: #697586;
    --medium-blue: #202939;
    --dark-blue: #121926;
}

html, body {
    font-family: 'Inter', sans-serif;
}

.page {
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray), var(--dark-gray), var(--stronger-gray));
    background-size: cover; /* Ajusta a imagem para cobrir toda a área */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita a repetição da imagem */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    position: relative;
    overflow: hidden;
}


.container-login {
    display: flex;
    align-items: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* cobre toda a tela */
    object-position: center;
    z-index: 0;
    opacity: 0.8;
    background-color: black;
    pointer-events: none;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.wrap-login100 {
    display: flex;
    align-items: center;
    background: #fff url("../images/login/fundo_card_login.png") no-repeat bottom;
    background-size: cover;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
    padding: 137px 130px 137px 95px;
    z-index: 2;
    height: 550px;
    width: 450px;
    margin: 0;
    border-radius: 0px;
}

.btn-toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.login-img .alert-danger {
    font-size: 11px !important;
    margin-top: -50px;
}

@media (max-width: 768px) {
  .wrap-login100 {
    width: 90%;
    padding: 40px 25px;
  }

  .login100-form-title {
    font-size: 28px;
  }

  .input-icon-wrapper input {
    font-size: 14px;
  }

  .login100-form-btn {
    font-size: 14px;
    padding: 10px;
  }

  .remember-me-label {
    font-size: 13px;
  }

  .text-primary-login {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .wrap-login100 {
    padding: 30px 20px;
  }

  .login100-form-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .login100-form-btn {
    font-size: 13px;
  }
}

.container-login100 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    margin-top: 80px;
}

.login100-form-title {
    color: #3A0082;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
}

.login100-form {
    width: 400px;
    margin-top: 0px;
}

.text-primary-login {
    color: #A6A6A8 !important;
}

.text-primary-login:hover {
    color: #7D613E !important;
}

.text-end{
    margin-top: -30px;
    margin-bottom: 30px;
}

.btn-primary {
    color: #fff !important;
    background: var(--medium-blue) !important;
    border-color: var(--medium-blue) !important;
}

.text-muted {
    color: var(--dark-gray) !important;
}

.header-brand-img-login {
    width: 105px;
}

.login-header {
    width: 100%;
    padding: 20px 40px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
        background: linear-gradient(to bottom, 
        #06020D, 
        #07030F, 
        #0A0414, 
        rgba(14, 5, 26, 0.9), 
        rgba(16, 7, 30, 0.4), 
        rgba(16, 7, 30, 0.1)
    );
}

.container-header {
    width: 100%;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 70px;
}

.logo-text {
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 400;
}

.nav-menu a {
    position: relative;
    color: white;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #7D613E;
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.input-icon-wrapper input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: none;
    border-bottom: 1px solid var(--dark-gray);
    background: transparent;
    font-size: 15px;
    color: var(--dark-blue);
    outline: none;
    transition: border-color 0.3s ease;
}

.input-icon-wrapper input::placeholder {
    color: var(--stronger-gray);
    opacity: 0.7;
    font-size: 14px;
}

.input-icon-wrapper input:focus {
    border-bottom: 1px solid var(--medium-blue);
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    margin-left: -10px;
}

.login100-form-btn {
    width: 100%;
    border-radius: 0px;
    border: none;
    background-color: #3A0082;
    color: white;
    font-size: 13px;
}

.remember-me-label {
    font-size: 14px;
    color: #A6A6A8;
    cursor: pointer;
}

.remember-me-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    margin-left: 1px;
    border: 1px solid #A6A6A8;
    border-radius: 0;
    appearance: none;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s ease;
}

.remember-me-label input[type="checkbox"]:checked {
    background-color: #3A0082;
}

.remember-me-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.login-options {
    margin-top: -20px;
    margin-bottom: 40px;
}

.signup-link-container {
    margin-top: 15px;
}

.signup-link-text {
    color: black !important;
}

.menu-toggle {
  display: none;
}



/* <----------------RESPONSIVE----------------> */

@media (max-width: 991px) {
    .background-video {
        object-fit: cover;
    }
}

@media (max-width: 768px) {
  .login-header {
    z-index: 9999;  
    padding: 20px 10px;
  }

  .logo-img {
    height: 30px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 10px 0;
    z-index: 10000 !important;
  }  

  .nav-menu.show {
    display: flex;
  }

  .nav-menu a {
    margin: 10px 15px;
    font-size: 14px;
  }

  .menu-toggle {
    cursor: pointer;
    z-index: 10001;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 431px) {
    .wrap-login100 {
        width: 350px;
        height: 480px;
        border-radius: 0px;
    }

    .login100-form-title {
        font-size: 20px;
    }
}


@media (max-width: 361px) {
    .wrap-login100 {
        width: 330px;
        height: 500px;
    }
}

@media (max-width: 321px) {
    .wrap-login100 {
        width: 330px;
        height: 440px;
    }

    .header-brand-img-login {
        width: 80px;
    }

    .login100-form-title {
        margin-bottom: 2px;
    }

    .page {
        height: 109vh;
    }
    
}