/* Atishay Document Access Control Plugin Styles */

.atishay-login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
    color: #333;
}

.atishay-login-container h2 {
    text-align: center;
    color: #0056b3;
    margin-bottom: 25px;
    font-size: 24px;
}

.atishay-form-group {
    margin-bottom: 20px;
}

.atishay-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 16px;
}

.atishay-form-group input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box; /* Padding and border included in element's total width and height */
    transition: border-color 0.3s ease-in-out;
}

.atishay-form-group input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.atishay-login-container button[type="submit"] {
    width: 100%;
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.atishay-login-container button[type="submit"]:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.atishay-login-container button[type="submit"]:active {
    background-color: #003f7f;
    transform: translateY(0);
}

.atishay-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.atishay-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.atishay-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .atishay-login-container {
        margin: 20px auto;
        padding: 20px;
    }
}
