/* ----------------------- */
/*       ·Î±×ÀÎ Style       */
/* ----------------------- */
.login-container {
	width: 100%;
	height: 100vh;
	background-color: #DFD8D4;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-form {
    width: 440px;
}
.login-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 56px;
}
.form-group {
    position: relative;
    margin-bottom: 16px;
}
input[type="text"], input[type="password"] {
    width: 100%;
    height: 64px;
    padding: 20px 24px;
    box-sizing: border-box;
    border: none;
    border-radius: 8px;
    background-color: white;
    font-size: 18px;
    font-weight: 400;
}
input[type="text"]::placeholder, input[type="password"]::placeholder {
color: #aaa;
font-size: 16px;
}
.form-group .clear-btn, .form-group .toggle-password {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /*background: none;*/
    border: none;
    cursor: pointer;
    font-size: 25px;
    padding: 0;
}
.clear-btn {
    right: 24px;
}
.toggle-password {
    width: 24px;
    height: 24px;
    background: url("../images/show-icon.svg") no-repeat center;
    border: none;
    cursor: pointer;
    right: 24px;
}
/* ºñ¹Ð¹øÈ£ º¸ÀÌ±â »óÅÂÀÏ ¶§ */
.toggle-password.show {
    background-image: url("../images/hide-icon.svg");
}
/* ¶óº§ ÀüÃ¼ ½ºÅ¸ÀÏ */
.remember-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    margin-bottom: 24px;
}
/* ½ÇÁ¦ Ã¼Å©¹Ú½º ¼û±â±â */
.remember-checkbox input {
    display: none;
}
/* Ã¼Å©¹Ú½º ±âº» »óÅÂ */
.remember-checkbox .checkmark {
    width: 20px;
    height: 20px;
    background-color: #fff; /* Èò»ö ¹è°æ */
    border: 2px solid #aaa; /* ¿¬È¸»ö Å×µÎ¸® */
    border-radius: 4px;
    display: inline-block;
    position: relative;
    margin-right: 6px;
    box-sizing: border-box;
}
/* Ã¼Å©¹Ú½º Ã¼Å© »óÅÂ */
.remember-checkbox input:checked + .checkmark {
    background-color: #B3192E;
    border-color: #B3192E;
}
.remember-checkbox input:checked + .checkmark::before, .remember-checkbox input:checked + .checkmark::after {
    content: "";
    position: absolute;
    background-color: #fff;
    border-radius: 2px;
}
.remember-checkbox input:checked + .checkmark::before {
    width: 2.2px;
    height: 7px;
    left: 4px;
    top: 5.5px;
    transform: rotate(-45deg);
}
.remember-checkbox input:checked + .checkmark::after {
    width: 2.2px;
    height: 10.4px;
    left: 9px;
    top: 2.5px;
    transform: rotate(45deg);
}
.remember-checkbox span {
    margin-top: 0;
    letter-spacing: -0.2px;
}
.login-btn {
    background-color: #B2192E;
    color: white;
    width: 100%;
    height: 72px;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    border-radius: 8px;
}
.login-btn:hover {
    background-color: #C22339;
}
.links {
    margin-top: 24px;
    font-size: 18px;
    text-align: center;
    letter-spacing: -0.5px;
}
.links span {
    margin: 0 16px;
    color: #999;
    cursor: default;
}
.links a {
    text-decoration: none;
    color: #333;
    margin: 0px;
}
.links a:hover {
    opacity: 0.8;
}
.copyright {
    width: 100%;
    margin-top: 64px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    color: #999;
    letter-spacing: -0.6px;
}

/* ¸ð¹ÙÀÏ »çÀÌÁî ¹Ìµð¾î Äõ¸® */
@media (max-width: 480px) {
	body {
		margin: 0;
	}
	.login-form {
		width: 100%;
		padding: 0 16px;
	}
	input[type="text"], input[type="password"] {
		height: 56px;
		font-size: 16px;
	}
	.login-btn {
		height: 64px;
		font-size: 22px;
	}
	.links {
		font-size: 16px;
	}
	.links span {
		margin: 0 8px;
	}
	.copyright {
		margin-top: 56px;
		font-size: 14px;
	}
}
@media screen and (max-width: 375px) {
	.login-btn {
        height: 56px;
        font-size: 20px;
    }
	.links {
        font-size: 14px;
    }
}
