.login-title{
    text-align: center;
    margin-bottom: 10px;
}

.login-desc{
    text-align: center;
    color: #64748b;
    margin-bottom: 24px;
}

.login-bottom{
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

/* 회원가입 버튼 */

.login-bottom a{
    min-width: 140px;
    text-align: center;
    padding: 10px 20px;

    background: #ffffff;
    color: #2563eb;

    border: 1px solid #2563eb;
    border-radius: 10px;

    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}
.login-bottom a:hover{
    background: #2563eb;
    color: #ffffff;
}

/* */


.passkey-btn{
    width:100%;
    background:linear-gradient(135deg,#2563eb,#0f172a);
    color:#fff;
    border:none;
    border-radius:14px;
    padding:15px 18px;
    font-size:18px;
    font-weight:800;
    box-shadow:0 6px 16px rgba(37,99,235,.25);
}

.passkey-btn:hover{
    opacity:.95;
    color:#fff;
}

.mode-select-box{
    display:flex;
    gap:12px;
    margin-bottom:24px;
}

.mode-option{
    flex:1;
    display:flex;
    align-items:center;
    gap:12px;
    border:2px solid #e5e7eb;
    border-radius:16px;
    padding:16px;
    cursor:pointer;
    background:#fff;
}

.mode-option input{
    width:20px;
    height:20px;
    margin:0;
}

.mode-option span{
    display:flex;
    flex-direction:column;
}

.mode-option small{
    color:#64748b;
    margin-top:4px;
}

.login-input-box{
    margin-top:16px;
}

.login-help{
    color:#64748b;
    font-size:14px;
}

.d-none{
    display:none !important;
}

.login-page{
    min-height:calc(100vh - 160px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 16px;
    background:#f8fafc;
}

.login-card{
    width:100%;
    max-width:820px;
    background:#ffffff;
      border:1px solid #94a3b8; 
    border-radius:22px;
    padding:36px;
    box-shadow:0 12px 36px rgba(15,23,42,.12);
}

.login-btn{
    display:block;
    width:100%;
    border:none;
    border-radius:14px;
    padding:15px 18px;
    font-size:18px;
    font-weight:800;
    text-align:center;
    text-decoration:none;
    cursor:pointer;
}

.cloud-btn{
    background:#2563eb;
    color:#ffffff;
}

.device-btn{
    background:#16a34a;
    color:#ffffff;
}

/* 모바일: 3개 세로 표시 */
@media (max-width:768px){
    .mode-select-box{
        flex-direction:column;
    }

    .mode-option{
        width:100%;
    }

    .login-card{
        padding:24px;
    }
}


/**/

.passkey-guide-list{
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0;
}

.passkey-guide-list li{
    position: relative;
    padding-left: 14px;
    margin-bottom: 6px;
    color: #475569;
    line-height: 1.6;
}

.passkey-guide-list li::before{
    content: "·";
    position: absolute;
    left: 0;
    font-weight: 700;
}
