body {
    margin: 0;
    padding: 0;
    background: url('../images/bg/bg-02.jpg') no-repeat center center fixed;
    background-color: #000;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: #fff;
}

.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.login-box {
    background: rgba(0, 0, 0, 0.6); /* negro con 60% de opacidad */
    padding: 30px;
    margin: 5px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

input[type="email"],
input[type="password"] {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    width: 95%;
    padding: 12px;
    background-color: #000;
    color: white;
    border: 1px solid #4e4e4e;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #3763E7;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #000;
  color: #fff;
  border: 1px solid #4e4e4e;
  border-radius: 5px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.google-btn:hover {
  background-color: #3763E7;
}

.google-icon {
  width: 24px;
  height: 24px;
}

.divider {
    margin: 20px 0;
    font-weight: bold;
    color: #666;
}

.register-link {
    margin-top: 20px;
    font-size: 14px;
}

.register-link a{
  color: #E5EBFB;
}

input[type="email"], input[type="password"] {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #4e4e4e;
  border-radius: 6px;
  background-color: #000;
  color: #fff;
}

/* Media Queries para pantallas más pequeñas */
@media (max-width: 768px) {
    .login-box {
        padding: 20px;
        max-width: 90%;
        margin: 0 10px;
    }

    .logo {
        width: 80px;
        margin-bottom: 15px;
    }

    input[type="email"],
    input[type="password"],
    button,
    .google-btn {
        width: 90;
        padding: 10px;
    }

    .google-btn {
        padding: 10px 0;
        font-size: 14px;
    }

    .register-link {
        font-size: 12px;
    }

    .divider {
        font-size: 14px;
    }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader .preloader-logo img {
  max-width: 200px;
  height: auto;
}
