@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* =========================
   Digital Card – Base
========================= */

.digital-card-wrapper {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0e0e0e;
    color: #ffffff;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* =========================
   Card
========================= */

.digital-card {
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
}

/* =========================
   Header
========================= */

.digital-card-header {
    margin-bottom: 24px;
}

.digital-card-header h1 {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 4px;
}

.digital-card-header .role {
    font-size: 14px;
    opacity: 0.7;
}

/* =========================
   Body
========================= */

.digital-card-body {
    margin-top: 20px;
}

.digital-card-body p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0;
}

/* =========================
   Footer
========================= */

.digital-card-footer {
    margin-top: 32px;
    font-size: 12px;
    opacity: 0.5;
    text-align: center;
}

/* =========================
   Password Form
========================= */

.digital-password-form {
    margin-top: 24px;
}

.digital-password-form input[type="password"] {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.digital-password-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.digital-password-form .actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.digital-password-form button {
    flex: 1;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 13px;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.digital-password-form .unlock {
    background: #ffffff;
    color: #000000;
    border: none;
}

.digital-password-form .cancel {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
}