.block {
  padding-top: 150px;

  @media (max-width: 768px) {
    padding-top: 75px;
  }
}

body {
  font-family: "Imprima", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.contact-href {
  color: black;
}

.navbar-nav {
  margin-left: auto;

  .nav-link {
    color: black;
  }

  .nav-item {
    padding: 10px;
    font-size: 18px;
  }
}

#navbarNav {
  padding-right: 50px;
}

.block1 {
  .row {
    margin: 0;
  }

  .col-block1-left {
    background-color: #486572;
    height: 75px;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .col-block1-right {
    background-color: #d8c7bd;
    height: 75px;
    color: #22495a;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 768px) {
    .col-block1-left,
    .col-block1-right {
      font-size: 16px;
    }
  }
}

.footer-custom {
  background-color: #cbb8ae;
  padding: 40px;

  .footer-col {
    margin-bottom: 30px;

    h5 {
      font-size: 18px;
      margin-bottom: 20px;
      color: #486572;
    }

    ul {
      list-style: none;
      padding: 0;

      li {
        margin-bottom: 8px;

        a {
          text-decoration: none;
          color: #486572;
          font-size: 15px;
          transition: opacity 0.2s ease;

          &:hover {
            opacity: 0.6;
          }
        }
      }
    }

    @media (max-width: 768px) {
      padding: 20px;
    }
  }
}

.block1login {
  margin-top: 12vh;

  .row {
    align-items: center;
  }

  .block1-img {
    img {
      width: 100%;
      border-radius: 20px;
      object-fit: cover;
    }
  }

  .block1form {
    background: #f8f8f8;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    max-width: 520px;
    margin: 0 auto;

    .block1-h6 {
      font-size: 42px;
      font-weight: 600;
      margin-bottom: 20px;
      color: #2e2e2e;
    }

    .block1-p {
      font-size: 18px;
      color: #6d6d6d;
      margin-bottom: 35px;
      line-height: 1.6;
    }

    .form-control {
      height: 60px;
      border-radius: 12px;
      border: 1px solid #e2e2e2;
      margin-bottom: 20px;
      font-size: 16px;
      padding-left: 20px;
      box-shadow: none;

      &:focus {
        border-color: #bfa48c;
        box-shadow: 0 0 0 0.2rem rgba(191, 164, 140, 0.25);
      }
    }

    .btn-login {
      width: 100%;
      height: 60px;
      background-color: #bfa48c;
      border: none;
      border-radius: 12px;
      color: white;
      font-size: 20px;
      font-weight: 500;
      margin-top: 10px;
      transition: 0.3s ease;

      &:hover {
        background-color: #a88f79;
      }
    }
  }

  @media (max-width: 992px) {
    margin-top: 6vh;

    .block1form {
      padding: 40px 30px;
    }
  }
}

.block1login {
  .block1form {
    .forgot-password {
      text-align: center;
      margin-top: 20px;

      a {
        text-decoration: none;
        color: #6d6d6d;
        font-size: 15px;
        transition: 0.2s ease;

        &:hover {
          opacity: 0.6;
        }
      }
    }
  }
}

.forgot-modal {
  border-radius: 20px;
  padding: 30px;

  .modal-title {
    font-size: 22px;
    font-weight: 600;
  }

  p {
    font-size: 16px;
    color: #6d6d6d;
    line-height: 1.6;
  }
}

.password-group {
  .form-control {
    height: 60px;
    border-radius: 12px 0 0 12px;
    border-right: none;
  }

  .toggle-password {
    height: 60px;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-left: none;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    cursor: pointer;
    transition: 0.2s ease;

    i {
      font-size: 20px;
      color: #6d6d6d;
    }

    &:hover {
      background-color: #f3f3f3;
    }

    &:focus {
      box-shadow: none;
    }
  }
}
