/*:root {*/
/*    */
/*    --brand-ink: #0B1B34;*/
/*    --ink: #0E1320;*/
/*    --muted: #6B7280;*/
/*    --bg: #ffffff;*/
/*    --bg-alt: #F6F8FB;*/
/*    --card: #ffffff;*/
/*    --border: #E5E7EB;*/
/*    --radius: 16px;*/
/*    --shadow: 0 10px 30px rgba(2, 12, 27, .08);*/
/*}*/
:root {
    --brand: #3660AD;
    --bg:#3660AD;
    --card:#fff;
    --text:#0E1320;
    --muted: #888fa5;
    --accent:#3660ad; }

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    color: var(--text);
    background: var(--bg)
}

p {
    color: #334155;
    font-size: 18px;
    line-height: 1.6;
    margin: 8px 0 0
}



.hero {
    width: 100%;
    align-self: center;
    -webkit-box-pack: center;
    justify-content: center;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;
    min-height: 100vh;
    overflow-y: auto;
    background:linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.75)),
    url('/img/background.png') center/cover no-repeat;
}


* {
    box-sizing: border-box
}



.container {
    margin: auto;
    width: 100%;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.card {
    min-width: 430px;
    background: var(--card);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

h1 {
    margin: 0 0 16px
}


.input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    color: var(--text);

}

.row {
    display: flex;
    gap: 12px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer
}

.btn-primary {
    background: var(--brand);
    color: #fff
}

.btn:disabled {
    opacity: .6;
    cursor: not-allowed
}

.notice {
    padding: 12px;
    border-radius: 12px;
    margin: 12px 0;

}
.notice-success {
    color: #155724;
    background-color: #D4EDDA;
    border-color: #C3E6CB;
}
.notice-danger {
    color: #721C24;
    background-color: #F8D7DA;
    border-color: #F5C6CB;
}

.list {
    margin: 12px 0;
    padding: 0;
    list-style: none
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 12px;
    margin: 8px 0
}

.small {
    font-size: .9em;
    color: var(--muted)
}

.center {
    text-align: center
}

.checkbox-input {
    transform: scale(1.3); /* 1.5x larger */
    margin-right: 10px;
    cursor: pointer;
}


.checkbox-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 0.7rem;
}