/**
* style.auth.css
* Developed By SsunG
* 2026.03.14
* 
* @author SsunG
* @version 1.0.0
**/

@charset "utf-8";

article.auth {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: auto auto;
  padding: 0;
  width: 400px;
  height: 696px;
  box-shadow: none;
}

article.auth > .body {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 30px 45px;
  border-radius: 4px 4px 0 0;
  border-bottom: solid 1px var(--color-base-dark);
  background-image: linear-gradient(
    to bottom right,
    var(--color-base-primary),
    var(--color-base-secondary)
  );
  user-select: none;
}

article.auth > .body > hr {
  display: inline-block;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

article.auth > .body > .logo {
  display: block;
  width: 100%;
  min-height: 180px;
  flex: 1 1 auto;
  font-size: 0;
  margin: auto auto;
  background: url(/assets/images/logo_default.svg) center center no-repeat;
  background-size: contain;
}

article.auth > .body > .text {
  padding: 20px;
  border-radius: 4px;
  color: RGB(174, 162, 208);
  border: solid 1px RGBA(174, 162, 208, 0.5);
  background: RGBA(174, 162, 208, 0.2);
}

article.auth > .body > .text > b {
  color: RGB(255, 255, 255);
}

/* article.auth > .body > div{
        transition: all 0.3s ease;
    } */
article.auth > .credits {
  display: block;
  padding: 20px 20px;
  border-radius: 0 0 4px 4px;
  border-top: solid 1px #ededed;
  color: #ededed;
  background: #d2d2d2;
  user-select: none;
}

article.auth > .body .auth-message > p {
  display: flex;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
  padding: 9px 10px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 11px;
  border-radius: 4px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  user-select: none;
}

article.auth > .body .auth-message > p.error {
  display: flex;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
  padding: 9px 10px;
  margin-bottom: 10px;
  width: 100%;
  min-height: 100px;
  font-size: 11px;
  text-align: center;
  line-height: 1.5;
  border-radius: 4px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  user-select: none;
}

article.auth > .body .auth-message > p.error.red {
  color: #fff;
  border: 1px solid rgba(255, 150, 150, 0.6);
  background: rgba(255, 150, 150, 0.2);
}

article.auth > .body .auth-message > p.error.blue {
  color: #fff;
  border: 1px solid rgba(150, 150, 255, 0.6);
  background: rgba(150, 150, 255, 0.2);
}

article.auth > .body .auth-message > p.error.mint {
  color: #fff;
  border: 1px solid rgba(150, 255, 255, 0.6);
  background: rgba(150, 255, 255, 0.2);
}

article.auth > .body .auth-message > p.error.orange {
  color: #fff;
  border: 1px solid rgba(255, 150, 150, 0.6);
  background: rgba(255, 150, 150, 0.2);
}
