/** Pozadí a definice textu**/

/** TODO:  !!!!presunout resources do login a prejmenova vrchni login na keycloak-them ... ted tu je nejaky lock ktery nejde odemknout ...**/

body {
    background: rgba(28,32,41) url('../img/banner.jpg') no-repeat;
    background-repeat: no-repeat;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: #FFFFFF;
}

/** Odkazy zelené*/
a {
    color: #00d664;
}


/** Obsah formuláře - pozadí, centrování a spacing**/
div#kc-content {
    position: absolute;
    left: 50%;
    width: 500px;
    transform: translateX(-50%);
    padding-bottom: 30px;
}

/*** Formuláře pro login, reset hesla a registraci **/
#kc-form, #kc-reset-password-form, #kc-register-form, #kc-error-message, #kc-passwd-update-form {
    background-color: #1A222F;
    border-radius: 1rem;
    padding: 2.5rem 4rem 2.5rem;
}

/*** Odkaz zpět nebo za zapomenuté heslo **/
#another-page-link {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 2rem;
}

#another-page-link a {
    color: white;
}

/*** Label u inputu, spacing a barva*/
label {
    display: block;
    padding-left: 1.25rem;
    color: rgb(127,127,127);
    padding-bottom: 5px;
    margin-top: 0.75rem;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/*** Nadpis **/
h1 {
    padding: 3rem 0;
    font-size: 2.25rem;
    color: rgba(0,214,100);
    font-weight: 700;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
    font-family: "Montserrat", sans-serif;
}

/**** Inputy ve formulářích **/
input[type=text], input[type=password] {
    color: #9ea5bf;
    padding: 0 20px;
    border-radius: 50px;
    font-size: 1rem;
    outline: black;
    background-color: #31363f;
    border: 0px solid transparent;
    resize: none !important;
    height: 3rem;
    width: 100%;
    margin-bottom: 0.75rem;

    /*** https://stackoverflow.com/questions/1377719/padding-within-inputs-breaks-width-100 */
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
}

/*** Tlačítko přihlásit / registrovat **/
input[type=submit] {
    background-color: #00d664;
    border-color: #00d664;
    border-radius: 30px;
    font-weight: 600;
    padding: 15px 60px;
    width: 100%;
    color: rgba(46,58,74);
    font-size: 1.125rem;
    text-transform: none;
    border: 0;
    margin-top: 1.75rem;
    font-family: "Montserrat", sans-serif;
}

/*** Tlačítko přihlásit / registrovat - hover**/
input[type=submit]:hover {
    background-color: #00b052;
}

/*** Info text např. Don't have account yet? Register v loginu*/
#kc-info, .instruction {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.125rem;
}

/*** Chyba u loginu a u resetu hesla**/
#input-error, #input-error-username {
    text-align: center;
    margin-top: 0.5rem;
}

.alert-error, .alert-success, .alert-warning  {
    margin: 20px;
    display: block;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
}