
.s_check {
    color: #01cc87;
}
.s_alerta { 
    color: #ff8134;
}
.s_info {
    color: #09A8C8;
}

.segundafase {
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #09A8C8;
    border-bottom: 1px solid #09A8C8;
    text-align: center;
}

.image_container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
}

#id_tiporegistrousuario {
    text-align: left;
}

.imagen_central {
    max-height: 256px;
}

.logo_izquierda {
    max-width: 200px;
    max-height: 200px;
}

.logo_derecha {
    max-width: 200px;
    max-height: 100px;
}

* {
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 256px;
    background-color: #002828;
    border-bottom: 1px solid #01cc87;
}

body {
    font-family: 'Consolas', 'Nirmala UI', Helvetica, Arial, sans-serif;
    font-size: 14px;
    background-color: #000;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 270px;
}

.content-box {
    background-color: #002828;
    padding: 20px 20px 5px 20px; 
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 90%; 
    max-width: 1500px; 
    transition: top 0.3s ease;
    text-align: center; 
    max-height: 80%;
    margin-bottom: 5%;
}

.content-box-two { 
    color: #DBDBDB;
    background-color: #000;
    padding: 10px;
    border: 1px solid #777;
    overflow-y: auto;
    text-align: justify;
    min-height: 480px;
    max-height: 490px;
    /* height: calc(100% - 50vh); */
}

.powerline1 { 
    border-top: 1px solid #01cc87;
    padding-top: 20px;
}

#texto {
    display: none;
}

.powerline2 { 
    border-bottom: 1px solid #01cc87;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

form p input {
    border: none;
    background-color: #000000;
    color: #09A8C8;
    text-decoration: blink;
    font-family: 'Consolas', 'Nirmala UI', Helvetica, Arial, sans-serif;
    font-size: 14px;
}

form input {
    border: none;
    background-color: #000000;
    color: #09A8C8;
    text-decoration: blink;
    font-family: 'Consolas', 'Nirmala UI', Helvetica, Arial, sans-serif;
    font-size: 14px;
}

#nombreusuario {
    border: none;
    background-color: #000000;
    color: #09A8C8;
    text-decoration: blink;
}

#nombreusuarionuevo {
    border: none;
    background-color: #000000;
    color: #09A8C8;
    text-decoration: blink;
}

form p input:focus, form input:focus {
    outline-width: 0;
}

#nombreusuario:focus {
    outline-width: 0;
}

#nombreusuarionuevo:focus {
    outline-width: 0;
}

.s_buttons {
    display: flex;
    justify-content: center;
}

#muteImage {
    width: 28px;
    margin-bottom: 1px;
}

#iaccess {
    width: 28px;
}

footer {
    text-align: center;
    position: fixed; 
    width: 100%;   
    /* height: 1.5%; */
    bottom: 0; 
    font-size: 14px;
    background-color: #002828;
    /* padding-top: 10px;
    padding-bottom: 10px; */
    border-top: 1px solid #01cc87;
    align-content: center;
}

footer p {
    color: #000;
}

footer p a {
    color: #DBDBDB;
    text-decoration: none;
}

input[name=tiporegistrousuario] {
    background-color: #000000;
    color: #09A8C8;
    text-decoration: blink;
    border: none;
    outline-width: 0;
}

input[name=tiporegistrousuario]:focus {
    border: none;
    outline-width: 0;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.loader {
    border: 12px solid #002828; /* Light grey */
    border-top: 12px solid #01cc87; /* Blue */
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

@media only screen and (max-width: 800px) { /* 800px */
    .logo_izquierda {
        display: none;
    }
    .image_container {
        display: block;
        position: relative;
        align-content: unset;
        width: 100%;
        height: 100%;
    }
    
    .imagen_central {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .logo_derecha {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 125px;
        max-width: 100%;
        max-height: 100%;
    }

    .content-box {
        width: 95%;
        margin-bottom: 20px;
        text-align: left;
    }

    .powerline1, .powerline2 {
        padding: 0px;
        margin-bottom: 0px;
    }

    main {
        margin-top: 250px;
    }
    
    footer {
        /* height: 2px; */
        font-size: 12px;
    }

    footer p {
        margin: 5px;
    }

    #muteImage {
        width: 19px;
    }

    #iaccess {
        width: 19px;
    }

    .loader {
        border: 6px solid #002828;
        border-top: 6px solid #01cc87;
        width: 35px;
        height: 35px;    
    }
}


