@import url("https://fonts.googleapis.com/css2? family=Poppins:wght@300;400;500&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #439b95;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items:center;
}
.logo-header a {
    border: none;
}

.logo-header img{
    position: block;
    height: 80px;   /* Ajusta aquí el tamaño */
    width: auto;
    display: block;
    margin-bottom: 260%;
}

.ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;

    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    transition: 0.5s;
    animation: animate 6s linear infinite;
}

.ring:nth-child(1) {
    color: #fff;
    box-shadow: 0 0 5px #fff, inset 0 0 5px #fff;
}

.ring:nth-child(2) {
    border-color: #fff;
    box-shadow: 0 0 5px #fff, inset 0 0 5px #fff;
    animation-duration: 4s;
    animation-direction: reverse;
}

.ring:nth-child(3) {
    border-color: #fff;
    box-shadow: 0 0 5px #fff, inset 0 0 5px #fff;
    animation-duration: 10s;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.login-form {
    position: absolute;
    width: 300px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.login-form h2 {
    color: #005b58;
    font-size: 2em;
    font-weight: 500;
    margin-bottom: 10px;
}

.input-box {
    position: relative;
    width: 100%;
}

.input-box input {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 40px;
    outline: none;
    color: #fff;
    font-size: 1em;
}

.input-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-signin {
    width: 100%;
    background: linear-gradient(90deg, #e94b68, #ffce84);
    border: none;
    padding: 12px;
    border-radius: 40px;
    color: #fff;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.btn-signin:hover {
    opacity: 0.9;
    transform: scale(1.07);
}

.links{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.links a {
    color: blanchedalmond;
    text-decoration: none;
    font-size: 0.8em;
    opacity: 0.7;
}

.links a:hover {
    opacity: 1;
    color: #005b58;
}