File: /home/ic3/domains/ic3.info/public_html/wp-content/plugins/wn-source-protector/assets/login.css
/* WN Source Protector Login Styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
background: #f0f0f0;
}
.wnsp-login-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
.wnsp-login-container {
background: white;
border-radius: 8px;
padding: 30px;
width: 90%;
max-width: 400px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.wnsp-login-header h2 {
text-align: center;
color: #333;
margin-bottom: 25px;
font-size: 18px;
}
.wnsp-form-group {
margin-bottom: 20px;
}
.wnsp-form-group label {
display: block;
margin-bottom: 5px;
color: #555;
font-weight: bold;
}
.wnsp-form-group input[type="text"],
.wnsp-form-group input[type="password"] {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
transition: border-color 0.3s;
}
.wnsp-form-group input:focus {
outline: none;
border-color: #007cba;
box-shadow: 0 0 5px rgba(0, 124, 186, 0.2);
}
.wnsp-password-group {
position: relative;
}
.wnsp-password-toggle {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
background: none;
border: none;
cursor: pointer;
color: #666;
padding: 5px;
}
.wnsp-password-toggle:hover {
color: #007cba;
}
.wnsp-error-message {
background: #ffebe8;
color: #d63638;
padding: 10px;
border-radius: 4px;
margin-bottom: 15px;
border-left: 4px solid #d63638;
}
.wnsp-field-error {
color: #d63638;
font-size: 12px;
margin-top: 5px;
display: none;
}
.wnsp-form-actions {
display: flex;
gap: 10px;
margin-top: 25px;
}
.wnsp-btn {
flex: 1;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
text-decoration: none;
text-align: center;
font-size: 14px;
font-weight: bold;
transition: background-color 0.3s;
display: inline-block;
}
.wnsp-btn-primary {
background: #007cba;
color: white;
}
.wnsp-btn-primary:hover {
background: #005a87;
}
.wnsp-btn-primary:disabled {
background: #ccc;
cursor: not-allowed;
}
.wnsp-btn-secondary {
background: #f7f7f7;
color: #333;
border: 1px solid #ddd;
}
.wnsp-btn-secondary:hover {
background: #e7e7e7;
text-decoration: none;
}
@media (max-width: 480px) {
.wnsp-login-container {
padding: 20px;
margin: 20px;
}
.wnsp-form-actions {
flex-direction: column;
}
}