﻿
body {
    margin: 0 !important;
    padding: 0 !important;
    background-image: url('../Images/Navidad.png') !important;
    /*background-image: url('../Images/FondoPredeterminado.jpg') !important;*/
    /*background-image: url('../Images/halloween-2837936_1280.png') !important;*/
/*    background-image: url('../Images/Revolucion3.jpg') !important;
*/    background-size: cover !important; /* Escala la imagen para cubrir todo el contenedor */
    background-position: center center !important; /* Centra la imagen en el contenedor */
    background-repeat: no-repeat !important; /* Evita que la imagen se repita */
    background-attachment: fixed !important; /* Fija la imagen de fondo al hacer scroll */
}

@media only screen and (max-width: 600px) {
    .elemento-a-ocultar {
        display: none; /* Oculta el elemento en dispositivos con un ancho de pantalla de 600px o menos */
    }
}


.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Ajusta la opacidad según sea necesario */
}

.pumpkin {
    position: fixed;
    top: -50px;
    width: 60px;
    height: 60px;
    background-image: url('../Images/vecteezy_snowflake_1194635.png'); /* Reemplaza con la URL de tu imagen de navidad */
    /*background-image: url('../Images/6121672.png');*/ /* Reemplaza con la URL de tu imagen de vernier */
    /*background-image: url('../Images/pngtree-halloween-pumpkin-glowing-png-image_6207126.png');*/ /* Reemplaza con la URL de tu imagen de calabaza */
/*    background-image: url('../Images/BanderMexico.png');
*/    background-size: cover;
    animation: fall linear infinite;
    z-index: 9999;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

.login {
    overflow: hidden;
    background-color: white;
    padding: 40px 30px 30px 30px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    transform: translate(-50%, -50%);
    transition: transform 300ms, box-shadow 300ms;
    box-shadow: 5px 10px 10px rgba(2, 128, 144, 0.2);
}

    .login::before, .login::after {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-top-left-radius: 40%;
        border-top-right-radius: 45%;
        border-bottom-left-radius: 35%;
        border-bottom-right-radius: 40%;
        z-index: -1;
    }

    .login::before {
        left: 40%;
        bottom: -130%;
        background-color: rgba(45, 129, 10, 0.15);
        animation: wawes 6s infinite linear;
    }

    .login::after {
        left: 35%;
        bottom: -125%;
        background-color: rgb(10 149 8 / 0.20);
        animation: wawes 7s infinite;
    }


.login-input {
    font-family: 'Asap', sans-serif;
    display: block;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(65, 224, 0, 1);
    Borde inferior verde font-size: 16px;
    background: white;
    width: 100%;
    padding: 10px 10px;
    margin: 15px 0px;
    box-sizing: border-box;
    Para que el padding no afecte al ancho transition: border-bottom-color 0.3s;
    Transición suave del color del borde
}

.login-button {
    font-family: 'Asap', sans-serif;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    width: 80px;
    border: 0;
    padding: 10px 0;
    margin-top: 10px;
    margin-left: -5px;
    border-radius: 5px;
    background-color: rgb(36 117 4);
    transition: background-color 300ms;
}

.login > button:hover {
    background-color: rgba(204, 68, 81, 1);
}

/* ---------- HALLOWEEN ---------- */
/*.login {
    overflow: hidden;
    background-color: #2b0a0a;*/ /* fondo oscuro, marrón rojizo */
/*padding: 40px 30px 30px 30px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    transform: translate(-50%, -50%);
    transition: transform 300ms, box-shadow 300ms;
    box-shadow: 0 0 20px 5px #ff6f00;*/ /* sombra naranja tenue */
/*color: #fff;
}

    .login::before, .login::after {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-top-left-radius: 40%;
        border-top-right-radius: 45%;
        border-bottom-left-radius: 35%;
        border-bottom-right-radius: 40%;
        z-index: -1;
    }

    .login::before {
        left: 40%;
        bottom: -130%;
        background-color: rgba(255, 140, 0, 0.15);*/ /* naranja tenue */
/*animation: wawes 6s infinite linear;
    }

    .login::after {
        left: 35%;
        bottom: -125%;
        background-color: rgba(128, 0, 128, 0.2);*/ /* morado tenue */
/*animation: wawes 7s infinite;
    }

.login-input {
    font-family: 'Asap', sans-serif;
    display: block;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #ff6f00;*/ /* borde naranja */
/*font-size: 16px;
    background: #3c0d0d !important;*/ /* fondo del input oscuro */
/*color: #fff;*/ /* texto blanco */
/*width: 100%;
    padding: 10px 10px;
    margin: 15px 0px;
    box-sizing: border-box;
    transition: border-bottom-color 0.3s, background 0.3s;
}

    .login-input::placeholder {
        color: #ffb347;*/ /* placeholder naranja suave */
/*}

    .login-input:focus {
        border-bottom-color: #ff4500;*/ /* naranja más intenso al enfocar */
/*background-color: #4d0f0f;*/ /* ligeramente más claro al enfocar */
/*outline: none;
    }

.login-button {
    width: 100%;
    background: linear-gradient(45deg, #ff6f00, #ff4500);
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

    .login-button:hover {
        background: linear-gradient(45deg, #ff4500, #ff6f00);
        transform: scale(1.05);
    }*/

@keyframes wawes {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 12px;
}
/* -- usable codes start -- */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
code,
del,
dfn,
em,
img,
q,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
    text-decoration: none;
    list-style: none;
}

img {
    width: 100%
}

.anim04c {
    -webkit-transition: all .4s cubic-bezier(.5, .35, .15, 1.4);
    transition: all .4s cubic-bezier(.5, .35, .15, 1.4);
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    background: #eee;
    color: #666;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}
/*-----*/

.outer {
    position: relative;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}
/*-----*/

.signboard {
    width: 100px;
    height: 100px;
    margin: auto;
    color: #fff;
    border-radius: 10px;
}
/*-----*/

.front {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: #ff726b;
    text-align: center;
}

.right {
    position: absolute;
    right: : 0;
    z-index: 2;
    -webkit-transform: rotate(-10deg) translate(7px, 8px);
    -moz-transform: rotate(-10deg) translate(7px, 8px);
    -ms-transform: rotate(-10deg) translate(7px, 8px);
    -o-transform: rotate(-10deg) translate(7px, 8px);
    transform: rotate(-10deg) translate(7px, 8px);
    background: #EFC94C;
}

.left {
    position: absolute;
    left: 0;
    z-index: 1;
    -webkit-transform: rotate(5deg) translate(-4px, 4px);
    -moz-transform: rotate(5deg) translate(-4px, 4px);
    -ms-transform: rotate(5deg) translate(-4px, 4px);
    -o-transform: rotate(5deg) translate(-4px, 4px);
    transform: rotate(5deg) translate(-4px, 4px);
    background: #3498DB;
}
/*-----*/

.outer:hover .inner {
    -webkit-transform: rotate(0) translate(0);
    -moz-transform: rotate(0) translate(0);
    -ms-transform: rotate(0) translate(0);
    -o-transform: rotate(0) translate(0);
    transform: rotate(0) translate(0);
}
/*-----*/

.outer:active .inner {
    -webkit-transform: rotate(0) translate(0) scale(0.9);
    -moz-transform: rotate(0) translate(0) scale(0.9);
    -ms-transform: rotate(0) translate(0) scale(0.9);
    -o-transform: rotate(0) translate(0) scale(0.9);
    transform: rotate(0) translate(0) scale(0.9);
}

.outer:active .front .date {
    -webkit-transform: scale(2);
}

.outer:active .front .day,
.outer:active .front .month {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.outer:active .right {
    -webkit-transform: rotate(-5deg) translateX(80px) scale(0.9);
    -moz-transform: rotate(-5deg) translateX(80px) scale(0.9);
    -ms-transform: rotate(-5deg) translateX(80px) scale(0.9);
    -o-transform: rotate(-5deg) translateX(80px) scale(0.9);
    transform: rotate(-5deg) translateX(80px) scale(0.9);
}

.outer:active .left {
    -webkit-transform: rotate(5deg) translateX(-80px) scale(0.9);
    -moz-transform: rotate(5deg) translateX(-80px) scale(0.9);
    -ms-transform: rotate(5deg) translateX(-80px) scale(0.9);
    -o-transform: rotate(5deg) translateX(-80px) scale(0.9);
    transform: rotate(5deg) translateX(-80px) scale(0.9);
}
/*-----*/

.outer:active .calendarMain {
    -webkit-transform: scale(1.8);
    opacity: 0;
    visibility: hidden;
}

.outer:active .clock {
    -webkit-transform: scale(1.4);
    opacity: 1;
    visibility: visible;
}

.outer:active .calendarNormal {
    bottom: -30px;
    opacity: 1;
    visibility: visible;
}

.outer:active .year {
    top: -30px;
    opacity: 1;
    visibility: visible;
    letter-spacing: 3px;
}
/*-----*/

.calendarMain {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 1;
}

.month,
.day {
    font-size: 10px;
    line-height: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.date {
    font-size: 40px;
    line-height: 40px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
}
/*-----*/

.clock {
    width: 100%;
    height: 100%;
    position: absolute;
    font-size: 40px;
    line-height: 100px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
}
/*-----*/

.year {
    width: 100%;
    position: absolute;
    top: 0;
    font-size: 14px;
    line-height: 30px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    color: #ff726b;
}

.calendarNormal {
    width: 100%;
    position: absolute;
    bottom: 0;
    font-size: 14px;
    line-height: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
}

.date2 {
    color: #ff726b;
}

.day2 {
    color: #3498DB;
}

.month2 {
    color: #EFC94C;
}
/* -- usable codes end -- */

/* -- unusable codes (text, logo, etc.) -- */

.info {
    position: absolute;
    top: 50px;
    left: 70px;
    padding: 20px;
    color: white;
    z-index: 9999;
}


    .info li {
        width: 100%;
    }

.hover,
.click,
.yeaa {
    font-size: 14px;
    line-height: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    bottom: 0;
    opacity: 1;
}

.dribbble {
    position: absolute;
    top: -60px;
    font-size: 14px;
    opacity: 0;
}

em {
    color: #ed4988;
}

.designer {
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    text-align: center;
    opacity: 0;
}

    .designer li {
        width: 100%;
        position: absolute;
        bottom: 30%;
    }

    .designer a {
        width: 30px;
        height: 30px;
        display: block;
        position: relative;
        border-radius: 100%;
        margin: auto;
        color: rgba(46, 204, 113, 0.55);
    }

        .designer a:after {
            content: "see designs";
            position: absolute;
            top: 0;
            left: 40px;
            font-size: 14px;
            line-height: 33px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            white-space: nowrap;
        }

        .designer a:hover:after {
            color: #2ecc71;
        }

    .designer img {
        display: block;
        border-radius: 100%;
    }

body:hover .info,
body:hover .designer {
    opacity: 1;
}

::selection {
    background: transparent;
}

::-moz-selection {
    background: transparent;
}
