/* INI RESET */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=text] {
  /* Remove First */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* FIN RESET */
/* INI GENERAL */
html {
  width: 100%;
  height: 100%;
  font-size: 100%;
}

body {
  height: 100%;
  width: 100%;
  background-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
  /*display: block;*/
}

/* FIN GENERAL */
/* INI LOGIN */
.gc-login {
  background-color: #FFF;
}

.gc-login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.gc-login-box {
  width: 100%;
  box-sizing: border-box;
}

.gc-login-header {
  display: flex;
  align-items: center; 
  justify-content: center;
  width: 100%;
  height: 190px;
  /*background: url("../img/bg-covap.jpg");*/
  background-size: 1085px;
  background-position: top center;
  background-repeat: no-repeat;

}

.gc-login-header-image {
  display: flex;
  align-items: center;
  justify-content: center;
  /*width: 100%;*/
  max-height: 190px;
  background: url("../../images/login/bg-login-mb.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  margin:10px 0px;
}

.gc-login-logo {
  max-width: 80%;
  height: auto;
}

.gc-login-content, .gc-login-content-extra {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5pt;
  width: 100%;
}

.gc-login-content h1 {
  color: #27347f;
  font-size: 20px;
  line-height: 1.2;
  width: 100%;
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
}

form {
  width: 100%;
}

.gc-login-form {
  width: 100%;
  max-width: 300px;
}

.gc-login-form-group label {
  font-weight: 600;
  display: block;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: .24rem;
}

.gc-login-form-group {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: .75rem;
}

.gc-login-form-control {
  width: 100%;  
  font-size: 14px;
  border: 1px solid #dcdcdc;
  box-sizing: border-box;
  appearance: none;
  padding: .575rem .75rem;
}

.gc-login-btn {
  display: block;
  background-color: #27347f;
  color: #FFF;
  border: none;
  padding: .675rem 1.75rem;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin: 1.5rem auto;
}

.gc-login-footer {
  width: 100%;
  text-align: center;
  color: #000;
  box-sizing: border-box;
  margin-top: 50px;
  padding: 0 15px;
  padding-bottom: 0px;
  font-size: 12px;
  line-height: 1.2;
}



.gc-login-footer span {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 1%;
}

.gc-login-footer span span {
    background: none;
    padding: 0;
}

.gc-login-footer-links {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
}

.gc-login-footer-links a {
  font-size: 14px;
  color: #27347f;
  font-weight: 600;
  text-decoration: underline;
}

.gc-login-footer-links a:hover {
  text-decoration: underline;
}

/* ini mvl */
@media (max-width: 766px) {
    body.tenant-background {
        background: none;
    }
}

    /* ini tablet y desktop */
    @media (min-width: 767px) {
        .gc-login {
            background-position: top center;
            background-attachment: fixed;
            background-size: cover;
            height: 100%;
            width: 100%;
        }

        .gc-login-logo {
            max-width: 80%;
        }

        .gc-login-box {
            max-width: 400px;
        }

        .gc-login-form {
            max-width: 70%;
        }

        .gc-login-footer {
            color: #000000;
            font-size: 14px;
        }

        .gc-login-header, .gc-login-header-image {
            background: none;
            height: auto;
            max-width: 100%;
        }

        .gc-login-content {
            padding: 35px 20px;
        }

        .gc-login-content-extra {
            padding: 0;
            margin: 10px 0px;
        }

       
        .tenant-background {
            background: url("../../images/login/default-background.png") no-repeat center center fixed;
            background-color: whitesmoke;
            background-size: cover;
        }

        div.tenant-background {
            background: none;
        }
    }

    /* fin tablet y desktop */
    /* FIN LOGIN */
