/* osbertv@yahoo.com */

* {
    box-sizing: border-box;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

html {
    font-family: "Lucida Sans", sans-serif;
}

.shadowed{
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.24);
    border-radius: 3px;
}

.header {
    background-color: #33b5e5;
    color: #ffffff;
    padding: 15px;
}

[class*="col-"] {
    float:  left;
    padding: 15px;
    width:100%;
}

@media only screen and (min-width: 768px) {
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}

.centered {
    display: block;
    margin: auto;
    text-align: center;
}

.footer {
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  text-align: center;
}

body {
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
}

#_login_box {
    width: 280px; height: 160px;
    /*background-color: hsla(50%, 80%, 80%, 0.5);*/
    background-color: rgba(255, 255, 250, 0.1);
}
/*background: transparent  url("../images/submit_button.png") no-repeat;*/
#_login_box button {
    width: 231px; height: 27px;
    border: none;
    cursor: pointer;
    margin: 8px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.12), 0 2px 3px rgba(0,0,0,0.24);
    border-radius: 5px;
    background: linear-gradient(white, red);

}
#_login_box input {
    width: 180px;
    border: solid 1px silver;
}
#_login_box #_login_box_message {
    font-size:medium;
}
#_login_box label {
    font-size:small;
    xcolor: gray;
}


.button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
