html, body * { box-sizing: border-box; font-family: 'Open Sans', sans-serif; }




body {
  background: url("tohoku_login.5d523eefbb88.png");
  background-size: cover;
}

#captcha {
  padding-top: 12px;
  margin-left: 60px;
}

.g-recaptcha {
  transform:scale(0.77);
  transform-origin:0 0;
}

.container {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 100px;
}


.frame {
  height: 575px;
  width: 430px;
  background: #262827;
  background-size: cover;
  margin-left: auto;
  margin-right: auto;
  border-top: solid 1px rgba(255,255,255,.5);
  border-radius: 5px;
  box-shadow: 0px 2px 7px rgba(0,0,0,0.2);
  overflow: hidden;
  transition: all .5s ease;
}

.logo-wrapper {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1000; /* Asegura que esté por encima de otros elementos */
}

.logo-box {
  background-color: rgba(240, 240, 240, 0.9); /* gris claro con algo de transparencia */
  border-radius: 12px;
  padding: 10px 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  max-width: 90vw;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hacer que las imágenes se ajusten en pantallas pequeñas */
.logo-box img {
  max-height: 50px;
  height: auto;
  width: auto;
  max-width: 100%;
}




@media (max-width: 500px) {
  .logo-box {
    flex-direction: column;
    align-items: flex-start;
  }
}






.nav {
  width: 100%;
  height: 100px;
  padding-top: 40px;
  opacity: 1;
  transition: all .5s ease;
}

.nav-up {
  transform: translateY(-100px);
  opacity: 0;
}

li {
  padding-left: 10px;
  font-size: 18px;
  display: inline;
  text-align: left;
  text-transform: uppercase;
  padding-right: 10px;
  color: #ffffff;
}

.signin-active a {
  padding-bottom: 10px;
  color: #ffffff;
  text-decoration: none;
  border-bottom: solid 2px #fcbb3c;
  transition: all .25s ease;
  cursor: pointer;
}

.signin-inactive a {
  padding-bottom: 0;
  color: #6d6d6d;
  text-decoration: none;
  border-bottom: none;
  cursor: pointer;
}

.form-signin {
  width: 430px;
  height: 375px;
	font-size: 16px;
	font-weight: 300;
  padding-left: 37px;
  padding-right: 37px;
  padding-top: 55px;
  transition: opacity .5s ease, transform .5s ease;
}

.form-signin-left {
  transform: translateX(-400px);
  opacity: .0;
}


.form-signin input{
  color: #000000;
  font-size: 13px;
}

.form-styling {
  width: 100%;
  height: 35px;
	padding-left: 15px;
	border: none;
	border-radius: 20px;
  margin-bottom: 20px;
  background: #7a7e83;
}

label {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  padding-left: 15px;
  padding-bottom: 10px;
  color: rgba(255,255,255,.7);
  display: block;
}

:focus {outline: none;
}

.form-signin input:focus, textarea:focus, .form-signup input:focus, textarea:focus {
    background: white;
    border: none; 
    padding-right: 40px;
    transition: background .5s ease;
 }


.btn-signin {
  float: left;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  height: 35px;
	border: none;
	border-radius: 20px;
  margin-top: 10px;
}

.btn-animate {
  float: left;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  text-align: center;
  line-height: 0px;
  color: #6d6d6d;
  width: 100%;
	border: none;
	border-radius: 20px;
  background-color: #fcbb3c;
  left: 0px;
  top: 0px;
  transition: all .5s ease, top .5s ease .5s, height .5s ease .5s, background-color .5s ease .75s; 
}

.btn-animate-grow {
  width: 130%;
  height: 625px;
  position: relative;
  left: -55px;
  top: -420px;
  color: rgba(255,255,255,0);
  background-color: rgba(255,255,255,1);
}





h1 {
  color: #ffffff;
  font-size: 35px;
	font-weight: 300;
  text-align: center;
}


#refresh {
    position: fixed;
    bottom: 20px;
    right: 20px; 
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    box-shadow: 0px 2px 7px rgba(0,0,0,0.1);
    padding: 13px 0 0 13px;
}

.refreshicon {
    fill: #d3d3d3;
    transform: rotate(0deg);
    transition: fill .25s ease, transform .25s ease;
}

.refreshicon:hover {
  cursor: pointer;
  fill: #fcbb3c;
  transform: rotate(180deg);
}