/* Partner page container */
.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Partner links styling */
.partner-links-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.partner-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.partner-link:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Popup overlay */
.pop-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    backdrop-filter: blur(3px);
}

/* Popup styling */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 100%;
    max-width: 400px;
}

.popup-content {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.close-popup:hover {
    color: #333;
}

/* Form styling */
.popup h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #0066cc;
    outline: none;
}

.login-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #0052a3;
}

/* Error message styling */
.login-error {
    background-color: #fff5f5;
    color: #e53e3e;
    padding: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #e53e3e;
    border-radius: 4px;
}

/* Success message styling */
.login-success {
    background-color: #f0fff4;
    color: #38a169;
    padding: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #38a169;
    border-radius: 4px;
}

/* Login message */
#login-message {
    margin-top: 15px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .popup {
        width: 90%;
    }
    
    .popup-content {
        padding: 20px;
    }
}