:root{
    --banner1: linear-gradient(135deg, #2c2100 0%, #6d5d1b 100%);
    --banner2: linear-gradient(135deg, #6d5d1b 0%, #b8940f 100%);
    --banner3: linear-gradient(135deg, #b8940f 0%, #ffd700 100%);
    --bannerFooter: linear-gradient(135deg, #1a1a1a 0%, #2c2100 100%);
    --textShadowYellow: 0px 0px 10px rgba(255, 215, 0, 0.8);
    --textShadowGreen: 0px 0px 10px rgba(0, 255, 0, 0.5);
    --color-gold: #ffd700;
    --color-dark-gold: #b8940f;
    --color-dark: #1a1a1a;
    --color-light: #f8f8f8;
}

a{
    text-decoration: none;
    color: var(--color-light);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-gold);
}

.closeWindow{
    position: absolute;
    right: 0px;
    top: 0px;
    background: var(--color-gold);
    color: #000;
    padding: 8px 12px;
    font-size: 1.1em;
    cursor: pointer;
    border-bottom-left-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.closeWindow:hover {
    background: #000;
    color: var(--color-gold);
}

.statusServerOn{
    color: #4caf50;
    text-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.contentCenter{
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
}

/* Cajas de contenido */
#resultForm{
    display: none;
}

.box1{
    border: 1px solid #333;
    border-top: 3px solid var(--color-gold);
    margin: 20px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background: linear-gradient(145deg, #1a1a1a, #222);
    transition: all 0.3s ease;
}

.box1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.1);
}

.box1 .title{
    text-align: center;
    padding: 10px 0px;
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.box1 div.informacion{
    display: flex;
    justify-content: space-between;
    padding: 10px 0px;
    border-bottom: 1px solid #333;
}

.box1 div.informacion:last-child {
    border-bottom: none;
}

.box1 div.informacion b {
    color: #ccc;
}

.box1 div.informacion span {
    color: #fff;
}

.box2{
    margin: 20px;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, #1a1a1a, #222);
    overflow: hidden;
}

.box3{
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #333;
    border-left: 5px solid var(--color-gold);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, #1a1a1a, #222);
    transition: all 0.3s ease;
}

.box3:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.1);
}

.box3 .title{
    border-left: 5px solid var(--color-gold);
    padding: 10px 15px;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.box3 p{
    padding: 10px 0;
    text-align: justify;
    line-height: 1.6;
    color: #ddd;
}

.box3 .publicBy{
    text-align: right;
    color: #999;
    font-style: italic;
    margin-top: 15px;
}

/* Formularios */

.form1 .title{
    text-align: center;
    margin: 20px 0;
    color: var(--color-gold);
    font-size: 1.8rem;
}

.form1 div{
    outline: none;
    width: 80%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form1 div label{
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 8px;
    color: #ddd;
}

.form1 div input[type="text"],
.form1 div input[type="email"],
.form1 div input[type="password"],
.form1 div select{
    display: block;
    padding: 12px 15px;
    font-size: 1em;
    outline: none;
    border: 1px solid #444;
    margin: 5px auto;
    width: 100%;
    transition: all 0.3s ease;
    border-radius: 5px;
    background: #222;
    color: #fff;
}

.form1 div input[type="text"]:focus,
.form1 div input[type="email"]:focus,
.form1 div input[type="password"]:focus{
    border: 1px solid var(--color-gold);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.form1 input[type="submit"]{
    transition: all 0.3s ease;
    max-width: 200px;
    width: 100%;
    cursor: pointer;
    border: none;
    background: var(--banner3);
    padding: 12px 0;
    color: #000;
    display: block;
    outline: none;
    font-size: 1em;
    margin: 20px auto;
    border-radius: 5px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.form1 input[type="submit"]:hover{
    background: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Select */
.select1{
    font-size: 1em;
    text-align: center;
    margin: 1%;
    outline: none;
    cursor: pointer;
    border: none;
    background: #222;
    padding: 10px 0px;
    border: 1px solid #444;
    width: 98%;
    color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.select1:focus {
    border: 1px solid var(--color-gold);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Botones */
.boton1{
    text-align: center;
    width: 90%;
    margin: 15px auto;
    font-size: 1em;
    padding: 12px 0;
    cursor: pointer;
    display: block;
    border-radius: 5px;
    border: none;
    background: var(--banner3);
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
    max-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.boton1:hover{
    background: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.3);
}

.boton2{
    text-align: center;
    width: 100%;
    font-size: 1em;
    padding: 12px 0;
    cursor: pointer;
    display: block;
    border-radius: 5px;
    border: none;
    background: #333;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.boton2:hover{
    background: #555;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Confirmar Element */

#confirm{
    position: fixed;
    background: red;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100;
    display: none;
}

#confirm .confirm h4{
    padding: 5px 20px;
    margin-bottom: 10px;
    color: var(--color-gold);
}

#confirm .confirm{
    position: absolute;
    margin: 10px auto;
    width: 40%;
    border-radius: 10px;
    background: #1a1a1a;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-evenly;
    padding: 20px 0px;
    flex-wrap: wrap;
    border: 1px solid #333;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

#confirm .confirm button{
    background: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

#confirm .confirm button:nth-child(2){
    background: #837373;
    border: 1px solid #666;
    color: #fff;
}

#confirm .confirm button:nth-child(2):hover{
    background: #666;
}

#confirm .confirm button:nth-child(3){
    background: var(--banner3);
    border: 1px solid var(--color-dark-gold);
    color: #000;
}

#confirm .confirm button:nth-child(3):hover{
    background: var(--color-gold);
}