/* Student guest login and sign-up cards. */
.nfp-guest {
    align-items: start;
    gap: 20px;
}

.nfp-guest section {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-width: 2px;
}

.nfp-login-card {
    border-color: #ffd1bd !important;
    background: linear-gradient(145deg, #fff8f3 0, #fff 62%) !important;
}

.nfp-join-card {
    border-color: #cdd8ea !important;
    background: linear-gradient(145deg, #f4f7fc 0, #fff 62%) !important;
}

.nfp-login-card::before,
.nfp-join-card::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 86px;
    height: 86px;
    border-radius: 0 0 0 100%;
    content: "";
    opacity: .55;
}

.nfp-login-card::before { background: #ffe1d2; }
.nfp-join-card::before { background: #dfe8f6; }

.nfp-guest-title {
    display: flex;
    position: relative;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.nfp-guest-title > span {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: var(--nfp-orange);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.nfp-join-card .nfp-guest-title > span { background: var(--nfp-navy); }

.nfp-guest-title h2 {
    margin: 0 0 3px !important;
    color: var(--nfp-text) !important;
    font-size: 24px !important;
    line-height: 1.2;
}

.nfp-guest-title p,
.nfp-help {
    margin: 0;
    color: var(--nfp-muted);
    font-size: 14px;
    line-height: 1.55;
}

.nfp-help {
    position: relative;
    margin-bottom: 14px;
    padding: 11px 13px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
}

.nfp-guest label {
    display: block;
    color: var(--nfp-text);
    font-weight: 700;
}

.nfp-guest label small {
    margin-left: 5px;
    color: #71665e;
    font-size: 12px;
    font-weight: 500;
}

.nfp-guest input[type="submit"],
.nfp-guest button {
    width: 100%;
    min-height: 50px;
    margin-top: 8px;
    border: 0;
    border-radius: 9px;
    background: var(--nfp-orange);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.nfp-join-card button { background: var(--nfp-navy); }
.nfp-join-card button:hover { background: #263b5e; }
.nfp-guest .login-remember { display: none !important; }
.nfp-guest .login-submit { margin-bottom: 0; }

.nfp-guest input:focus {
    border-color: var(--nfp-orange);
    outline: 3px solid rgba(244, 81, 30, .16);
}

@media (max-width: 800px) {
    .nfp-guest section { padding: 20px; }
}
