/* Account Access page only - does not affect other pages */

.account-access-page {
    margin: 0;
    min-height: 100vh;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #a8d4ee 0%, #d4ebf7 40%, #e8f4fa 100%);
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px 24px;
    box-sizing: border-box;
}

.account-access-header {
    width: 100%;
    max-width: 900px;
    margin-bottom:20px;
}

.account-access-header-inner {
    background: #f4fafe;
    border-radius: 12px;
    padding: 30px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.account-access-rally-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.account-access-main {
    flex: 1;
  /*  width: 100%;*/
    width: 109%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: flex-start;
}

.account-access-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 40px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 500px;
    min-height: 400px;
    text-align: center;
}

.account-access-lock-icon {
    width: 48px;
    height: 48px;
    background: #004b7d;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.account-access-lock-icon i {
    color: #fff;
    font-size: 1.4rem;
}

.account-access-card h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.account-access-card .account-access-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.45;
}

.account-access-card .form-label {
    font-weight: 600;
    color: #333;
    text-align: left;
    margin-bottom: 8px;
}

.account-access-card .form-control {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 1rem;
}

.account-access-card .form-control:focus {
    border-color: #004b7d;
    box-shadow: 0 0 0 3px rgba(0, 75, 125, 0.15);
}

.account-access-btn-begin {
    width: 100%;
    margin-top: 24px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #004b7d 0%, #009CDE 100%);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.account-access-btn-begin:hover {
    opacity: 0.95;
    color: #fff;
}

.account-access-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
    margin-bottom: 0;
}

.account-access-footer {
    width: 100%;
    max-width: 900px;
    margin-top: auto;
    padding-top:0px;
}

.account-access-footer-inner {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.account-access-scantron-logo {
    max-width: 160px;
    height: auto;
    display: inline-block;
    filter: brightness(0.75) contrast(1.2);
}

.account-access-scantron-tagline {
    font-size: 0.7rem;
    color: #999;
    margin: 6px 0 0 0;
}

@media (max-width: 767px) {
    .account-access-card {
        padding: 24px 20px 32px;
    }

    .account-access-card h1 {
        font-size: 1.3rem;
    }

    .account-access-rally-logo {
        max-width: 160px;
    }
}

.account-access-wrapper {
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Outer wrapper around login card */
.account-access-wrapper-outer {
    width: 100%;
    max-width: 960px;
    background: #f4fafe;
    border-radius: 19px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.account-access-separator {
    width: 90%; 
    height: 2px; 
    background-color: #444; 
    opacity: 0.1; 
    margin: 20px 0; 
    border-radius: 1px; 
}



@media (max-width: 767px) {
    .account-access-wrapper-outer {
        padding: 24px 16px;
        width: 90%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1103px){
    .account-access-wrapper-outer {
        padding: 24px 16px;
        width: 91%;
    }
}


@media screen and (min-width: 884px) and (max-width: 1104px){
    .account-access-wrapper-outer {
        padding: 24px 16px;
        width: 95%;
    }

    }




