/* PowerLine PM Login Styles */

.powerline-login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #000000;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    margin: 0;
}

.powerline-login-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.powerline-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.powerline-login-logo {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    text-align: center;
}

.powerline-login-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.powerline-login-header h2 {
    margin: 0 0 10px 0;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 600;
}

.powerline-login-header p {
    margin: 0;
    color: #CCCCCC;
    font-size: 14px;
}

.powerline-login-form {
    margin-top: 30px;
}

.powerline-form-group {
    margin-bottom: 20px;
}

.powerline-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.powerline-form-group input[type="text"],
.powerline-form-group input[type="email"],
.powerline-form-group input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.powerline-form-group input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.powerline-form-group label input[type="checkbox"] {
    margin-right: 8px;
}

.powerline-error-message {
    background: #d63638;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.powerline-btn-block {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: #FFD700;
    color: #000000;
    font-weight: 600;
    border: none;
}

.powerline-btn-block:hover {
    background: #FFC700;
    color: #000000;
}

.powerline-login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.powerline-login-footer a {
    color: #FFD700;
    text-decoration: none;
    font-size: 14px;
}

.powerline-login-footer a:hover {
    color: #FFC700;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .powerline-login-box {
        padding: 30px 20px;
    }
}

