@charset "utf-8";
@import 'fonts.css';

/* particle : 배경 애니메이션 */
particle {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--fill-base-500);
}

particle .point,
particle .circle2 {
  fill: var(--fill-base-100);
}

particle .x {
  fill: var(--fill-base-600);
}

particle .circle {
  fill: var(--fill-base-300);
}

particle svg {
  display: block;
  width: 1.87rem;
  height: 1.87rem;
  position: absolute;
  transform: translateZ(0);
  animation: fade-in 1s ease-in-out;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0.37rem;
  background: transparent;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.14rem;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:active {
  background: rgba(0, 0, 0, 0.2);
}

html {
  font-size: 1rem;
}

html,
body {
  margin: 0;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  font-family: "Pretendard", sans-serif;
  line-height: 1.5;
  color: var(--text-base-600);
  background: var(--fill-base-500);
  color-scheme: light;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*:before,
*:after {
  box-sizing: border-box;
}

a {
  color: var(--text-base-600);
  text-decoration: none;
  outline: none;
}

a:hover {
  color: var(--text-base-600);
  text-decoration: none;
}

var,
em {
  font-style: normal;
}

p {
  margin: 0;
  padding: 0;
}

dl,
ol,
ul,
label,
h1,
h2,
h3,
h4 {
  margin: 0;
}

li {
  list-style: none;
}

button {
  font-family: "Pretendard", sans-serif;
  color: var(--text-base-600);
  outline: none;
}

.for-mobile {
  display: none;
}

::placeholder {
  color: var(--text-base-400);
  font-weight: normal;
}

input:-webkit-autofill {
  /* -webkit-text-fill-color: var(--text-base-400);
    box-shadow: 0 0 0 6.25rem var(--utility-white) inset;    */
}

input[type="text"],
input[type="password"] {
  width: 100%;
  height: 3.31rem;
  padding: 0 0.25rem;
  font-size: 1.13rem;
  font-family: "Pretendard", sans-serif;
  color: var(--text-base-600);
  border: none;
  border-bottom: 0.063rem solid var(--stroke-base-400);
  background: transparent;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input[type="text"]:focus,
input[type="password"]:focus {
  outline: none;
  border-color: var(--primary-300);
}

input[readonly] {
  background: var(--fill-base-200);
}

input[disabled] {
  background: var(--fill-base-200);
}

.valid.error {
  font-size: 0.9rem;
  color: #EA2228;
}

/* btngroup */
btngroup {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 0.4rem;
}

btngroup button[disabled] {
  color: var(--stroke-base-500);
  background: var(--alt-base-200);
  cursor: not-allowed;
}

btngroup button[disabled]:hover,
btngroup button[disabled]:focus {
  background-color: var(--alt-base-200);
}

.btn-basic {
  position: relative;
  width: 6.25rem;
  height: 3.75rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-base-600);
  border-radius: 0.31rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all ease 0.15s;
}

.btn-basic:hover,
.btn-basic:focus {
  background-color: var(--alt-base-200);
}

.btn-primary {
  position: relative;
  width: 6.25rem;
  height: 3.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--utility-white);
  border-radius: 0.31rem;
  background: var(--primary-300);
  border: none;
  cursor: pointer;
  transition: all ease 0.15s;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-400);
}

label.checkbox {
  position: relative;
  display: flex;
  height: 1rem;
  align-items: center;
  cursor: pointer;
}

label.checkbox input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

label.checkbox input[type="checkbox"] + span,
label.checkbox input[type="checkbox"] + input + span {
  display: flex;
  width: 1rem;
  height: 1rem;
  border: 0.062rem solid var(--stroke-base-400);
  background: var(--fill-base-100);
  border-radius: 0.13rem;
}

label.checkbox input[type="checkbox"]:checked + span,
label.checkbox input[type="checkbox"]:checked + input + span {
  background: url(../image/ic_checkbox_checked_b.svg) no-repeat;
  border: none;
  border-radius: 0;
}

label.checkbox input[type="checkbox"]:checked ~ em {
  color: var(--text-base-600);
}

label.checkbox em,
label.checkbox a {
  display: block;
  margin-left: 0.44rem;
  font-style: normal;
  color: var(--text-base-500);
  line-height: 1.3;
  font-size: 0.82rem;
}

label.checkbox input:checked ~ em {
  color: var(--text-base-600);
}

/* container */
container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--fill-base-500);
  padding: 3rem;
}

container > section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 49rem;
  width: 100%;
  height: 35.5rem;
}

/* logincard */
logincard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.75rem;
  width: 100%;
  height: 31.25rem;
  background-color: var(--fill-base-100);
  border-radius: 1.25rem;
  box-shadow: 0 0.25rem 2rem 0 rgba(0, 0, 0, 0.08);
}

/* footer */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3rem;
}

footer > links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.88rem;
  margin: 0 0.7rem;
}

footer > links > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.87rem;
  color: var(--text-base-500);
  transition: all ease 0.15s;
}

footer > links > a:hover,
footer > links > a:focus {
  color: var(--text-base-600);
}

footer > links > a strong {
  font-weight: 700;
}

footer > links > a span {
  color: var(--text-base-500);
}

footer > links > a em {
  font-weight: 700;
  color: var(--text-base-500);
}

footer > logo {
  display: flex;
  align-items: center;
  margin: 0 0.63rem;
  width: 7rem;
  height: 1.75rem;
  background: url(../image/logo_lgcns.svg) no-repeat;
}

footer > logo span {
  display: none;
}

/* titleblock */
titleblock {
  width: 16.25rem;
  height: 100%;
}

titleblock > h1 {
  margin-bottom: 0.7rem;
  width: 8.88rem;
  height: 1.94rem;
  background: url(../image/logo_lgcns_type.svg) no-repeat;
}

titleblock > h1 span {
  position: absolute;
  left: -600rem;
  top: -600rem;
  width: 0;
  height: 0;
  font-size: 0;
}

titleblock > h2 {
  font-weight: 200;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: -0.05rem;
}

titleblock > a {
  margin-top: 2.56rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  letter-spacing: -0.02rem;
}

titleblock > a .symbol-ople {
  display: inline-block;
  width: 1.38rem;
  height: 1.38rem;
  background: url(../image/symbol_ople.svg) no-repeat;
}

titleblock > a p {
  font-weight: 200;
  font-size: 0.94rem;
  color: var(--text-base-600);
}

titleblock > a p strong {
  font-weight: 600;
}

titleblock > a:before {
  content: "";
  position: absolute;
  top: -1.3rem;
  left: 0;
  width: 5rem;
  height: 0.1rem;
  opacity: 0.15;
  background-color: var(--stroke-base-600);
}