/* Minimal Login Page Styles */
.clp-login-page {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.clp-container {
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.clp-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
}

.clp-card h2 {
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 24px;
    text-transform: uppercase;
}

.clp-form-group {
    margin: 0 0 8px 0;
}

.clp-form-group label {
    display: none;
}

.clp-form-input {
    width: 100%;
    padding: 12px 15px;
    margin: 0;
    border: none !important;
    background: #f2f2f2;
    border-radius: 5px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #333;
    box-sizing: border-box;
}

.clp-form-input:focus {
    outline: none;
    background: #e8e8e8;
    box-shadow: none;
    transform: none;
}

.clp-form-input::placeholder {
    color: #888;
}

.clp-remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    margin: 8px 0 20px;
    color: #555;
}

.clp-checkbox-group {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.clp-checkbox-group input[type="checkbox"] {
    margin: 0;
    width: 14px;
    height: 14px;
}

.clp-checkbox-group label {
    display: block;
    color: #555;
    cursor: pointer;
    font-size: 13px;
}

.clp-forgot-password {
    color: #9b8efb;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.clp-forgot-password:hover {
    color: #7767f5;
    text-decoration: underline;
}

.clp-button {
    width: 100% !important;
    background: #8a7cfb !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 15px !important;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Poppins", sans-serif;
    transition: background 0.3s;
    margin: 0;
}

.clp-button:hover {
    background: #7767f5;
    transform: none;
    box-shadow: none;
}

.clp-button-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: clpSpin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes clpSpin {
    to { transform: rotate(360deg); }
}

.clp-message {
    text-align: center;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 400;
}

.clp-message.error {
    background: #ffe6e6;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
}

.clp-message.success {
    background: #e8f5e9;
    color: #388e3c;
    border: 1px solid #c8e6c9;
}

.clp-form-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 13px;
}

.clp-register-link {
    color: #8a7cfb;
    text-decoration: none;
    margin-left: 5px;
    transition: color 0.2s;
}

.clp-register-link:hover {
    color: #7767f5;
    text-decoration: underline;
}

/* Loading state */
.clp-button.loading {
    opacity: 0.8;
    cursor: not-allowed;
}

.clp-button.loading:hover {
    background: #8a7cfb;
}

/* Remove all unnecessary styles */
.clp-logo,
.clp-subtitle,
.clp-divider,
.clp-particles,
.clp-input-icon,
.clp-password-wrapper,
.clp-password-toggle,
.clp-footer,
.clp-separator {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .clp-container {
        max-width: 280px;
    }
    
    .clp-card h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .clp-form-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .clp-button {
        padding: 11px;
        font-size: 14px;
    }
}