div.content {
    max-width: 960px;
    padding-top: 25px;
}

/* Title: more room above, tighter to the text below */
div.content div.uiPageHeader {
    margin: 0 0 12px 0;
}

#loginV2Layout {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 40px;
}

/* ----- Left column: login form ----- */
#loginV2Form {
    width: 520px;
    font-size: 15px;
    line-height: 1.4;
}

#loginV2Input {
    margin-top: 20px;
}

#loginV2Input label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#txtEmail {
    width: 100%;
    box-sizing: border-box;
    height: 34px;
    padding: 4px 8px;
    font-size: 15px;
}

/* ----- Login \ Register button (site-standard .boxButton) ----- */
/* Only override layout; visual style comes from .boxButton in Common.css */
#btnLoginCreate {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 20px;
    padding: 10px 0;
    font-size: 14px;
}

.loginV2Error {
    display: block;
    margin-top: 15px;
    color: #cc0000;
    font-weight: bold;
}

/* ----- Right column: New Login Process notice ----- */
#loginV2Notice {
    width: 447px;
    border: 2px solid #f7941e;
    box-sizing: border-box;
}

.noticeHeader {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background-color: #f7941e;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.noticeHeader i {
    font-size: 20px;
}

.noticeBody {
    padding: 16px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #1f3a68;
}

/* Narrow screens (phones / small tablets in portrait): the fixed-width row can't fit both columns, so
   the notice gets squeezed into a sliver and word-wraps. Stack them full-width instead - form on top,
   notice below - so the text wraps naturally. */
@media (max-width: 767px) {
    #loginV2Layout {
        flex-direction: column;
        gap: 20px;
    }

    #loginV2Form,
    #loginV2Notice {
        width: 100%;
    }
}
