로그인 페이지 축소

This commit is contained in:
2026-04-10 16:55:12 +09:00
parent bf85bdd11b
commit 3c15fc2b33

View File

@@ -41,12 +41,12 @@ input {
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
overflow-y: auto; overflow-y: auto;
padding: 40px 24px; padding: 28px 24px;
} }
.system-header { .system-header {
margin-top: 8vh; /* 기존 유지 */ margin-top: 5vh;
transform: translateY(-40px); /* 타이틀만 위로 이동 */ transform: translateY(-20px);
text-align: center; text-align: center;
color: rgba(255, 255, 240, 0.95); /* 아이보리색 타이틀 */ /*(255, 255, 240, 0.801) (255, 255, 255, 0.95)*/ color: rgba(255, 255, 240, 0.95); /* 아이보리색 타이틀 */ /*(255, 255, 240, 0.801) (255, 255, 255, 0.95)*/
text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
@@ -55,24 +55,24 @@ input {
.system-header .sub-title { .system-header .sub-title {
display: block; display: block;
font-size: 1.4rem; font-size: 1.15rem;
font-weight: 600; font-weight: 600;
margin-bottom: 12px; margin-bottom: 8px;
} }
.system-header .main-title { .system-header .main-title {
margin: 0; margin: 0;
font-size: 2.8rem; font-size: clamp(2rem, 3.4vw, 2.35rem);
font-weight: 800; font-weight: 800;
} }
.login-panel { .login-panel {
width: min(100%, 800px); width: min(100%, 720px);
margin-top: 5vh; /* 타이틀 바로 아래쪽에 배치 */ margin-top: 3vh;
margin-bottom: auto; /* */ margin-bottom: auto; /* */
padding: 52px; /*48px*/ padding: 40px 40px 36px;
border: 1px solid rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 32px; border-radius: 28px;
background: rgba(255, 255, 240, 0.801); /* 로그인 카드 배경 (아이보리 화이트) */ /*(255, 255, 240, 0.801) (255, 255, 255, 0.92)*/ background: rgba(255, 255, 240, 0.801); /* 로그인 카드 배경 (아이보리 화이트) */ /*(255, 255, 240, 0.801) (255, 255, 255, 0.92)*/
box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2); box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
z-index: 20; z-index: 20;
@@ -80,20 +80,21 @@ input {
.panel-heading h1 { .panel-heading h1 {
margin: 0; margin: 0;
font-size: clamp(2rem, 3vw, 2.6rem); font-size: clamp(1.7rem, 2.5vw, 2.15rem);
line-height: 1.05; line-height: 1.05;
color: #0f3d2e; color: #0f3d2e;
} }
.panel-heading p { .panel-heading p {
margin: 12px 0 0; margin: 10px 0 0;
color: #4a6659; color: #4a6659;
font-size: 0.95rem;
} }
.login-form { .login-form {
display: grid; display: grid;
gap: 16px; gap: 14px;
margin-top: 28px; margin-top: 22px;
} }
.field { .field {
@@ -103,15 +104,15 @@ input {
.field label { .field label {
color: #0a291f; color: #0a291f;
font-size: 0.96rem; font-size: 0.92rem;
font-weight: 700; font-weight: 700;
} }
.text-input { .text-input {
width: 100%; width: 100%;
padding: 16px 18px; padding: 14px 16px;
border: 1px solid rgba(15, 61, 46, 0.2); border: 1px solid rgba(15, 61, 46, 0.2);
border-radius: 18px; border-radius: 16px;
background: #fdfefe; background: #fdfefe;
color: #132238; color: #132238;
transition: all 160ms ease; transition: all 160ms ease;
@@ -126,19 +127,19 @@ input {
.input-hint { .input-hint {
margin: 0; margin: 0;
min-height: 24px; min-height: 20px;
color: #5c746b; color: #5c746b;
font-size: 0.95rem; font-size: 0.9rem;
} }
.primary-button { .primary-button {
display: inline-flex; display: inline-flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
min-height: 56px; min-height: 50px;
padding: 0 20px; padding: 0 20px;
border: 0; border: 0;
border-radius: 18px; border-radius: 16px;
background: linear-gradient(180deg, #185c45 0%, #0f3d2e 100%); background: linear-gradient(180deg, #185c45 0%, #0f3d2e 100%);
color: #f8fbff; color: #f8fbff;
font-weight: 700; font-weight: 700;
@@ -160,9 +161,9 @@ input {
.status-card, .status-card,
.success-panel { .success-panel {
margin-top: 24px; margin-top: 18px;
padding: 20px 22px; padding: 16px 18px;
border-radius: 22px; border-radius: 18px;
border: 1px solid rgba(15, 61, 46, 0.15); border: 1px solid rgba(15, 61, 46, 0.15);
} }
@@ -188,17 +189,17 @@ input {
} }
.success-label { .success-label {
margin-bottom: 8px; margin-bottom: 6px;
color: #0f3d2e; color: #0f3d2e;
font-size: 0.78rem; font-size: 0.72rem;
font-weight: 800; font-weight: 800;
text-transform: uppercase; text-transform: uppercase;
} }
.success-panel h3 { .success-panel h3 {
margin: 0 0 8px; margin: 0 0 6px;
color: #0a291f; color: #0a291f;
font-size: 1.4rem; font-size: 1.2rem;
} }
.hidden { .hidden {
@@ -211,14 +212,29 @@ input {
height: 98vh; height: 98vh;
border-width: 4px; /* 모바일에서는 테두리 살짝 줄임 */ border-width: 4px; /* 모바일에서는 테두리 살짝 줄임 */
border-radius: 12px; border-radius: 12px;
padding: 24px 16px; padding: 20px 14px;
}
.system-header {
margin-top: 2vh;
transform: translateY(0);
}
.system-header .sub-title {
font-size: 1rem;
}
.system-header .main-title {
font-size: clamp(1.55rem, 7vw, 1.95rem);
} }
.login-panel { .login-panel {
padding: 28px 22px; width: min(100%, 640px);
margin-top: 18px;
padding: 26px 20px;
border-radius: 24px; border-radius: 24px;
} }
} }
/* Dashboard Specific Styles */ /* Dashboard Specific Styles */
.dashboard-panel { .dashboard-panel {