* {
	box-sizing: border-box;
margin: 0;
padding: 0;
	 font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

body {
background: #dce3ed;
display: flex;
	 justify-content: center;
	 align-items: center;
	 min-height: 100vh;
color: #2d2d2d;
}

.login-wrapper {
background: #ffffff;
width: 1280px;
height: 800px;
display: grid;
	 grid-template-columns: 1.2fr 1fr;
	 border-radius: 4px;
overflow: hidden;
	  box-shadow: 0 18px 40px rgba(43, 53, 65, 0.18);
}

.login-left {
background: linear-gradient(180deg, #f7f9fd 0%, #eef2fb 100%);
width:640px;
position: relative;
}


.login-left p {
	margin-top: 300px;
	font-size: 24px;
	letter-spacing: 0.1em;
	text-align:center;
color: #596070;
}

.login-left small {
position: absolute;
bottom: 20px;
left: 20px;
      font-size: 11px;
color: #7a8294;
       letter-spacing: 0.02em;
}

.login-right {
padding: 170px 80px 60px;
background: #eef2fb;
width:640px;
display: flex;
	 flex-direction: column;
}

.login-right h1 {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.18em;
	margin-bottom: 24px;
color: #596070;
}

.input-group {
display: flex;
	 flex-direction: column;
gap: 18px;
     margin-bottom: 26px;
}

label {
	font-size: 12px;
	letter-spacing: 0.12em;
color: #7a8294;
       text-transform: uppercase;
}

input[type="text"],
	input[type="password"] {
width: 100%;
padding: 12px 14px;
border: 1px solid #c5ccdb;
	border-radius: 6px;
background: #ffffff;
	    font-size: 14px;
	    letter-spacing: 0.08em;
color: #4b5363;
	}

input[type="text"]::placeholder,
	input[type="password"]::placeholder {
color: #9aa2b4;
	}

.login-button {
width: 100%;
padding: 14px;
background: #9aa8c5;
color: #ffffff;
border: none;
	border-radius: 6px;
	font-size: 14px;
	letter-spacing: 0.18em;
cursor: pointer;
transition: background 0.3s ease;
}

.login-button:hover {
background: #8c99b8;
}

.separator {
	text-align: center;
	font-size: 10px;
	letter-spacing: 0.18em;
color: #b0b7c6;
margin: 26px 0 22px;
}

.signup-link {
	font-size: 12px;
	text-align: center;
	letter-spacing: 0.12em;
color: #7a8294;
}

.signup-link a {
color: #7a8294;
       text-decoration: underline;
}

@media (max-width: 980px) {
	body {
background: #ffffff;
	}

.login-wrapper {
width: 100%;
height: auto;
	grid-template-columns: 1fr;
	box-shadow: none;
}

	.login-left {
padding: 32px 24px 100px;
	}

	.login-left p {
		margin-top: 80px;
	}

	.login-right {
padding: 48px 24px;
	}
}
