/* Login* Pages Style */

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #969ba0;
    background-color: #f6f6f6;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }


/*  https://www.w3schools.com/howto/howto_css_zoom_hover.asp  - ZOOM NA FOTO DO ITEM ON HOVER  */
.zoom {
  padding: 0px;
  transition: transform .4s;
}

.zoom:hover {
  -ms-transform: scale(2.0); /* IE 9 */
  -webkit-transform: scale(2.0); /* Safari 3-8 */
  transform: scale(2.0);
}
/* FONT */

/* ADJUST CKEDITOR WINDOW SIZE TO FULL DIV */
.django-ckeditor-widget{
    width: 100%;
}
