@charset "UTF-8";
/*########################################

Project:	Cornerstone Framework
Extends:	Cornerstone Framework Core CSS
Script:		Cornerstone Framework
Section:	User Forms
Version:	1.0.0
Last Change:	29/08/2019
Developed:	dpDesignz - www.dpdesignz.co.nz

#########################################*/

body.cs-admin {
  grid-template-columns: 1fr !important;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "cs--body__header"
    "cs--body__main"
    "cs--body__footer";
  background-image: linear-gradient(to bottom right, #d13f2d, #da4230, #8e44ad);
}

body.cs-admin>header,
body.cs-admin>#cs-header {
  grid-template-columns: 1fr;
  background-color: transparent;
  padding: 0;
  height: unset;
  border-bottom: none;
}

body>header>section#cs--header__logo {
  width: 100%;
  min-width: 100vw;
}

body>header>section#cs--header__logo img {
  width: 100%;
  height: auto;
  max-width: 250px;
  text-align: center;
}

body>header>section#cs--header__logo img.site-logo {
  padding: 16px 0 0 16px;
}

body.cs-admin>main {
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  background-color: transparent;
  box-shadow: unset;
}

#cs--user-form {
  padding: 25px;
  max-width: 375px;
  background-color: #eee;
  box-shadow: 0 8px 10px -5px rgba(0, 0, 0, .2), 0 16px 24px 2px rgba(0, 0, 0, .14), 0 6px 30px 5px rgba(0, 0, 0, .12);
}

#cs--user-form h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 24px;
}

#cs--user-form__fields {
  padding-top: 16px;
}

#cs--user-form__fields .csc-input-field input {
  background-color: white;
  border-radius: 3px;
  border: none;
}

#cs--user-form__fields .csc-input-field input::placeholder {
  color: #000000;
}

#cs--user-form__password__wrapper {
  position: relative;
}

#cs--user-form__password__wrapper #toggle-password {
  position: absolute;
  top: 3px;
  right: 16px;
  color: #9D9D9D;
  cursor: pointer;
}

#cs--user-form__password p {
  margin: 0;
  font-size: 12px;
  text-align: right;
  color: #616161;
}

#cs--user-form__password #password-error~p {
  margin-top: 25px;
}

#cs--user-form__actions p {
  margin-top: 0;
}

body>footer {
  padding: 0 20px;
  text-align: left;
}

body>footer>p {
  font-size: 0.7em;
  color: #eeeeee;
}

body>footer>p>span {
  margin-right: 10px;
}

body>footer>p a {
  color: #eeeeee !important;
  text-decoration: none !important;
  font-weight: bold;
}