body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.container{
  display:flex;
  justify-content:center;
  align-items:center;
  height:100vh;
  background-color: #25383B;
  background-image:url("../images/icons/logoicono.png");
  background-repeat: repeat;
  background-size: 350px 350px;
  background-position:center;
}



.login-box {
    width: 90vw;
    max-width: 600px;
    height: auto;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
}
/* Flechita atrás */
.back-button {
    position: absolute;
    top: 10px;
    left: 14px;
    font-size: 32px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #37998f; 
}

.login-box img {
    margin-top: 3%;
    max-width: 30%;
    height: auto;
}

.login-box h2 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-family: "Oswald", sans-serif;
    font-size: 22px;
}

.login-box input[type="text"],
.login-box input[type="password"],
.login-box input[type="email"],
.login-box input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
    font-family: "Oswald", sans-serif;
}

.login-box button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 20px;
    border: 2px solid #4bc0b1;
    background-color: #ffffff;
    color: #4bc0b1;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.login-box button:hover {
    background-color: #4bc0b1;
    color: #ffffff;
}

.login-box img.icon {
    width: 24px;
    height: auto;
    padding: 8px;
    margin-top: 6px;
}
#link-ingresa {
    font-size: 26px;
    color: #ffffff;
    font-weight: bold;
}

#link-ingresa:hover {
    color: #37998f;
    text-decoration: underline;
}

.login-box .register {
    position: relative;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    font-family: "Oswald", sans-serif;
    margin-top: 5px;
    margin-bottom: 5px;
}

.login-box .register a {
    color: #f7f7f7;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.login-box .register a:hover {
    text-decoration: underline;
    color: #37998f;
}

.login-box .terms {
    font-size: 12px;
    font-weight: bold;
    font-family: "Oswald", sans-serif;
    margin-top: 0px;
    padding-bottom: 5px;
}

.login-box .terms a:hover {
    text-decoration: underline;
    color: #37998f !important;
}
.login-box .terms a:hover {
    color: #37998f !important;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .login-box {
        width: 90vw;
        padding: 10px;
        height: auto;
        max-width: none;
    }

    .login-box img {
        max-width: 25%;
        margin-top: 5px;
    }

    .login-box h2 {
        font-size: 1.8em;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .login-box input {
        padding: 8px;
        margin-bottom: 5px;
    }

    .login-box button {
        padding: 10px;
        margin-top: 8px;
    }

    .register,
    .terms {
        font-size: 12px;
    }

    .back-button {
        font-size: 1.5em;
    }
}