@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

/*Ajuste en base a:
    http://www.lancelarsen.com/blazor-future-net-web-dev-css-update-for-error-message/
*/
#blazor-error-ui {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.75); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    text-align: center;
}

    #blazor-error-ui p {
        font-size: 1.4em;
        width: 305px;
        padding: 25px;
        border-radius: 10px;
        color: white;
        background-color: #560319;        
        border-color: white;
        border-width: 2px;
        border-style: solid;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

    #blazor-error-ui a {        
        color: #84E5D9;
        font-weight: bold;
    }
