* {
  font-family: Montserrat;
  /* width: 100%; */
}

body {
    background-image: url('../img/bgbook.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: bottom;
}

#formlogin{
  box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
      transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
  cursor: pointer;
  }

#formlogin:hover{
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

.form-content {
  width: 40vw;
  overflow: auto;
  min-height: 100vh;  
  flex-direction: column;
  padding-top: 25vh;
  margin-left: 5vw;
}

.form-container {
    width: 75vw;
    overflow: auto;
    min-height: 100vh;  
    align-items: center;
    flex-direction: column;
    margin: auto;
    animation-delay: 2s;
}

.card {
    border-radius: 16px;
}

.form-form {
  width: 100%;
  height: auto;
  padding: 30px 20px;
  z-index: 1;
  align-items: center;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 1);
  margin-bottom: 15vh;
}

.form {
  gap: 8px;
  align-items: flex-start;
  flex-direction: column;
}

#req::after {
  content: "*";
  color: red;
}

.btnfoto {
  border: #198754 solid;
  width: 50px;
  border-radius: 20px;
  text-align: center;
  background-color: #fff;
}

#btnlogin {
  width: 100%;  
}

.btn:hover, .btn:focus {
  color: #fff;
  outline: 0;
}
.fifth {
  border-color: #198754;
  border-radius: 0;
  color: #198754;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 150ms ease-in-out;
  width: 30vw;
}
.fifth:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 100%;
  background: #198754;
  z-index: -1;
  transition: width 150ms ease-in-out;
}
.fifth:hover {
  color: #fff;
  box-shadow: 0 0 10px 0 #198754 inset, 0 0 10px 4px #198754;
}
.fifth:hover:after {
  width: 110%;
}

.collapsible-link {
  width: 100%;
  position: relative;
  text-align: left;
}

.collapsible-link::before {
  content: '\f107';
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  display: block;
  font-family: 'FontAwesome';
  font-size: 1.1rem;
  transition: 0.5s;
}

.collapsible-link[aria-expanded='true']::before {
  content: '\f106';
}