/* Login modal styles adapted from ops-portal for identical look */


.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 60px);
    margin-top: 60px;
    background: white;
}

.login-modal {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 50px 60px;
    text-align: center;
    max-width: 450px;
    width: 90%;
}

.login-modal i {
    font-size: 48px;
    color: #3498db;
    margin-bottom: 12px;
    display: block;
    line-height: 1;
}

.login-modal h2 {
    margin: 0;
    font-size: 24px;
    color: #2c3e50;
    font-weight: 600;
}

.login-modal p {
    color: #7f8c8d;
    margin-top: 10px;
    font-size: 14px;
}

.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 30px;
    font-size: 15px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    line-height: 1;
}

.btn.btn-primary i {
    margin-right: 10px;
    font-size: 16px;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    color: #ffffff;
}

/* Ensure no stray pseudo-elements add content inside button */
.btn.btn-primary::before,
.btn.btn-primary::after { content: none !important; }
