@font-face {
    font-family: fnt;
    font-style: normal;
    font-weight: 400;
    src: url("/fonts/openr.woff2") format("woff2");
}

@font-face {
    font-family: fnt;
    font-style: normal;
    font-weight: 600;
    src: url("/fonts/openb.woff2") format("woff2");
}

body {
    font-family: fnt, sans-serif;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: url("/images/signbg.png") center / cover no-repeat fixed;
    color: #12212d;
}

#header {
    display: flex;
    justify-content: center;
    padding: 20px 0 8px 0;
}

#suburani-logo {
    width: 320px;
}

#innr {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 34px;
    padding: 16px;
    flex-wrap: wrap;
}

#signbox {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
    padding: 34px 34px 42px 34px;
    max-width: 420px;
    flex: 1 1 320px;
}

.signttl {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 22px;
}

.signlab {
    display: grid;
    gap: 8px;
}

label {
    font-size: 14px;
    color: #364858;
}

.field {
    padding: 12px 12px;
    border-radius: 8px;
    border: 1px solid #d7e0e8;
    font-size: 16px;
    font-family: fnt, sans-serif;
}

.field:focus {
    outline: 2px solid #2f7cf6;
    border-color: #2f7cf6;
}

.btnbox {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

button {
    background: #2f7cf6;
    border: none;
    color: #fff;
    padding: 12px 26px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: fnt, sans-serif;
    box-shadow: 0 10px 18px rgba(47, 124, 246, 0.28);
}

button:hover {
    background: #1f6ae0;
}

#tosbox {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    margin-top: 6px;
}

#tosbox a {
    color: #2f7cf6;
    text-decoration: none;
}

#tosbox a:hover {
    text-decoration: underline;
}

#helptext {
    max-width: 380px;
    flex: 1 1 260px;
    color: #0f2435;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hlptxt {
    line-height: 1.5;
    font-size: 15px;
}

#signfeedback {
    min-height: 18px;
    font-size: 14px;
    color: #b3261e;
}

.suggestion {
    background: #eef4ff;
    border: 1px solid #cfdfff;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
}

#npdiv {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

#newpass {
    font-weight: 600;
    padding: 6px 10px;
    background: #fff;
    border: 1px solid #d7e0e8;
    border-radius: 6px;
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    #signbox {
        padding: 24px;
    }
}
