@media screen and (max-width: 520px) {
  .cog-container {
    width: 100% !important;
  }
}

@media screen and (max-width: 375px) {
  .cog-container input[type=text], .cog-container input[type=password], .cog-container input[type=submit] {
    width: 100% !important;
  }
    .cog-container h1 {
        font-size: 20px !important;
    }
}

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
    background-color: #f7f7f7;
}

.cog-container {
    font-family: 'Libre Franklin', Arial, Helvetica, sans-serif;
    width: 420px;
    margin: 15px auto;
    padding: 10px 40px 40px;
    box-shadow: 0px 3px 6px #888888;
    background-color: #fff;
}

.cog-container h1 {
    font-family: 'Libre Franklin', Arial, Helvetica, sans-serif;
    color: #21205f;
}

.cog-container label {
    display: block;
}

.cog-container input[type=text], .cog-container input[type=password] {
    padding: 8px 12px;
    border-radius: 10px;
    margin: 0 0 10px;
    border: 1px solid #888888;
    width: 100%;
}

.cog-container input[type=submit] {
    background-color: #7a9132;
    border: none;
    color: #fff;
    padding: 8px 25px;
    border-radius: 10px;
    cursor: pointer;
    border-bottom: 2px solid #5a6f18;
}

.cog-logo {
    margin: 25px auto 5px;
    width: 231px;
}

.cog-container .checkPassword-match {
    margin-bottom: 15px;
}

.cog-container .passwordCheck-notValid-customizable {
    color: red;
}

.cog-container .passwordCheck-valid-customizable {
    color: green;
}

.cog-container input[type=submit]:disabled {
    background-color: #d0d0d0;
    border-bottom: 2px solid #858585;
}

a.forgot-link {
    margin-top: 28px;
    float: right;
    font-size: 14px;
    color: #21205f;
}