html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.logos {
    height: 100px;
}

#main {
    min-height: 300px;
    position: relative;
    z-index: 1;
    /*background: url(../images/guilloche3.png) center 420px;*/
    color: #FFF;
    text-align: center;
}

input:disabled {
    background: #fff;
}


.form-control {
    padding: 25px;
    border-radius: 10px;
}

.mybutton {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: -o-linear-gradient(top, #ffb12a 0%, #ff9900 100%);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffb12a), to(#ff9900));
    background: -moz-linear-gradient(0% 100% 90deg, #ff9900, #ffb12a);
    background: -ms-linear-gradient(top, #ffb12a 0%, #ff9900 100%);
    background: -o-linear-gradient(top, #ffb12a 0%, #ff9900 100%);
    font-size: 1em;
    padding: 10px 20px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}


.mybutton:hover {
    background: -o-linear-gradient(top, #df9d2b 0%, #d58100 100%);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#df9d2b), to(#d58100));
    background: -moz-linear-gradient(0% 100% 90deg, #d58100, #df9d2b);
    background: -ms-linear-gradient(top, #df9d2b 0%, #d58100 100%);
    background: -o-linear-gradient(top, #df9d2b 0%, #d58100 100%);
}

::placeholder {
    color: #fff;
    opacity: 0.9 !important;
}

#userInput, #passwordForm input {
    color: #000000 !important;
}


#customInput {
    border-radius: 10px;
    background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0))), rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
}

/*#customInput2 {
   border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
  !*  background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(rgba(0,0,0,0.1)), to(rgba(0,0,0,0))), rgba(0,0,0,0.2);*!
    box-shadow: inset 0 0 8px rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.3);
    border: none;
    color: white;
}*/

.fade-enter-active, .fade-leave-active {
    transition: opacity .5s;
}

.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */
{
    opacity: 0;
}

.wrong-password-background {
    background: red;
    color: #fff;
    padding: 20px;
}

.visibility_toggle {
    /*margin-left: -200px;*/
    cursor: pointer;
}

/*===================================================*/
hr {
    height: 1px;
    width: 70%;
    margin: 0 auto;
}

.hr-warning {
    background-image: -webkit-linear-gradient(left, rgba(210, 105, 30, .8), rgba(210, 105, 30, .6), rgba(0, 0, 0, 0));
}

.hr-success {
    background-image: -webkit-linear-gradient(left, rgba(15, 157, 88, .8), rgba(15, 157, 88, .6), rgba(0, 0, 0, 0));
}

.hr-primary {
    background-image: -webkit-linear-gradient(left, rgba(66, 133, 244, .8), rgba(66, 133, 244, .6), rgba(0, 0, 0, 0));
}

.hr-danger {
    background-image: -webkit-linear-gradient(left, rgba(244, 67, 54, .8), rgba(244, 67, 54, .6), rgba(0, 0, 0, 0));
}


input[type="password"], input[type="text"] {
    font-size: large;
    letter-spacing: 1px;
}

.timer {
    color: #ccc;
    font-size: 1.5rem;
    border: 1px solid #ccc;
    padding: 3px;
    text-align: center;
    border-radius: 3px;
}

.zoom {
    transition: transform .2s; /* Animation */
}

.zoom:hover {
    transform: scale(1.2);
}

.list-background-alarm {
    background: #005bae !important;
}

.important-button-alarm{
    background: #ff9500  !important;
    border: none !important;
    color: white;
}

.important-button-alarm:hover{
    background: #c67400 !important;
    color: white;
}

.disableLink {
    pointer-events: none;
    opacity: 0.7;
}