/* login.css — 로그인 카드 배치
   모든 색상/간격/폰트 수치는 docs/assets/screenshots/baseline/login-styles.json
   의 해당 요소 값을 그대로 인용한다. (px 값은 baseline computed style 그대로) */

/* container: full viewport, blue-grey backdrop, card pinned to top-center
   baseline: background rgb(102,148,170); padding 161px 0 0;
   display flex; justify-content center; align-items flex-start */
.psr-login-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-height: 100vh;
    padding: 161px 0 0;
    background-color: rgb(102, 148, 170);
}

/* card (baseline .box-red): width 580px border-box, 5px red border,
   20px radius, white fill, margin 4px 0 0 4px, height 302px */
.psr-login-card {
    width: 580px;
    height: 302px;
    margin: 4px 0 0 4px;
    background-color: rgb(255, 255, 255);
    border: 5px solid rgb(190, 6, 13);
    border-radius: 20px;
}

/* logo row: centered; img has margin-top 24px (mt-6),
   rendered 441.625 x 102 */
.psr-login-logo-wrap {
    display: flex;
    justify-content: center;
}

.psr-login-logo {
    width: 441.625px;
    height: 102px;
    margin-top: 24px;
}

/* input rows: px-10 (padding 0 40px). username mt-4 (16px), password mt-2 (8px).
   inner input width 490px, height 36px */
.psr-login-field {
    position: relative;
    height: 36px;
    padding: 0 40px;
    margin-top: 16px;
}

.psr-login-field--password {
    margin-top: 8px;
}

.psr-login-input {
    width: 100%;
    height: 36px;
    padding: 8px 46px 8px 16px;
    color: rgb(51, 51, 51);
    font-size: 12.96px;
    line-height: 19.44px;
    letter-spacing: 0.1215px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(192, 192, 196);
    border-radius: 4px;
    outline: none;
}

.psr-login-input::placeholder {
    color: rgba(51, 51, 51, 0.55);
    opacity: 1;
}

/* trailing icon (baseline v-field__append-inner: 24x24, 12px from field right) */
.psr-login-field-icon {
    position: absolute;
    top: 50%;
    right: 52px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    color: rgb(90, 90, 90);
    pointer-events: none;
}

.psr-login-field-icon svg {
    display: block;
}

/* bottom row: mt-4 (16px), height 40px; badge left (ml-10 = 40px),
   actions right (mr-10 = 40px) */
.psr-login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    margin-top: 16px;
}

/* icon strip (baseline img rendered 110.203 x 34) */
.psr-login-badge {
    width: 110.203px;
    height: 34px;
    margin-left: 40px;
}

.psr-login-actions {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

/* "Save Login ID" label: font-size 14.4px, color rgb(51,51,51),
   letter-spacing 0.135px */
.psr-login-save {
    display: flex;
    align-items: center;
    color: rgb(51, 51, 51);
    font-size: 14.4px;
    line-height: 21.6px;
    letter-spacing: 0.135px;
    cursor: pointer;
    white-space: nowrap;
}

.psr-login-check {
    width: 20px;
    height: 20px;
    margin: 0 6px 0 0;
    cursor: pointer;
}

/* LOGIN button (baseline v-btn elevated small):
   bg rgb(215,8,16), white text, 10.8px/500, letter-spacing 0.964286px,
   padding 0 12px, radius 4px, margin-left 16px, height 28px, uppercase */
.psr-login-btn {
    height: 28px;
    margin-left: 16px;
    padding: 0 12px;
    color: rgb(255, 255, 255);
    font-size: 10.8px;
    font-weight: 500;
    letter-spacing: 0.964286px;
    text-align: center;
    text-transform: uppercase;
    background-color: rgb(215, 8, 16);
    border: 0;
    border-radius: 4px;
    box-shadow:
        rgba(0, 0, 0, 0.2) 0px 3px 1px -2px,
        rgba(0, 0, 0, 0.14) 0px 2px 2px 0px,
        rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    cursor: pointer;
}
