.center {
    text-align: center;
}

#notregister_add_button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0;
}

#notregister {
    display: flex;
    flex-direction: row;
    justify-content: center;
    /*align-items: center;*/
}

.notregister_column {
    margin: 0 1em;
}

#unSupportedImage {
    color: red;
}

body {
    background-color: #f2f8f9;
}

section {
    margin: 3em 4em 1.5em 4em;
    color: black;
    font-size: 1em;
}

article {
    clear: both;
    margin-top: 0;
}
.thumbnails {
    margin-bottom: 1.5em;
}

.float {
    float: left;
    margin-right: 2em;
    margin-bottom: 1.5em;
    width: auto; 
    height: auto;
 
}

.border {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

label {
    font-weight: 700;
}

/* mobile landscape to tablet portrait */
@media only screen and (max-width: 767px) {
    section { margin: 1em; padding: 0;}
    #notregister {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .notregister_column {
        margin: 0;
    }
}

@media only screen and (max-width: 479px) {
    .float { clear: both; float: none; margin-top: 1.5em; 
             display: block; margin-left: auto; margin-right: auto;} 
   
}


