#image{
	width: 100%;
	min-height: 100%;
	float: left;
	position: relative;
	background-color: #000000;
}

#image::before{
	background: url('../img/fondo.png') no-repeat center center;
	background-size: cover;
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: .7;
}

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: url('assets/img/fondo.jpg') no-repeat center center / cover;
  position: relative;
}

.dev-banner {
  background-color: #ffc107;
  color: #212529;
  text-align: center;
  padding: 10px 20px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 1.7rem;
}

/* Login */
.login-box {
  position: fixed;
  z-index: 1;
  background: #dbdbdb;
  border-radius: 1.5rem;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  color: black;
  text-align: center;
}

/* Logo */
.login-box .logo img {
  max-width: 70%;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px white);
}

/* Título */
.login-box h3 {
  margin-bottom: 3rem;
  font-size: 22px;
  font-weight: bold;
  margin-top: 0;
  color: #666;
}

.login-box p {
  margin-bottom: 25px;
  color: #666;
}

/* Inputs */
.login-box .form-control {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  transition: 0.3s;
  border: 1px solid darkgray;
}

.login-box .form-control:hover {
  border: 1px solid #01437f;
  transition: 0.3s;
}

/* Botón */
.login-box .btn {
  width: 100%;
  padding: 10px;
  background: #ff8800;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(255, 136, 0, 0.10);
}

.login-box .btn:hover {
  background: #ff9800;
  box-shadow: 0 4px 16px rgba(255, 136, 0, 0.18);
  transform: translateY(-1px) scale(1.01);
}

.login-box .btn-auth {
  width: 100%;
  padding: 10px;
  background: #01437f;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(1, 67, 127, 0.10);
  margin-top: 10px;
}

.login-box .btn-auth:hover {
  background: #01325e;
  box-shadow: 0 4px 16px rgba(1, 67, 127, 0.15);
  transform: translateY(-1px) scale(1.01);
}

.login-box a {
  display: inline-block;
  margin-top: 15px;
  font-size: 14px;
  color: #b3c7db;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
}

.login-box a:hover {
  color: #7a8fa6;
  opacity: 0.7;
}
