/**
 * Developer css 
 */


/* start - login */
.loginPage {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f9f9f9;
}

.loginPage #loginPage {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px 30px;
    width: 350px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.loginPage h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.loginPage .form-group {
    margin-bottom: 15px;
}

.loginPage .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.loginPage .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.loginPage .password-container {
    position: relative;
}

.loginPage .password-container input {
    padding-right: 40px;
}

.loginPage .password-container .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 16px;
    margin-top: 10px;
}

.loginPage .form-actions {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 10px;
}

.loginPage .form-actions a {
    text-decoration: none;
    color: #1500ff;
    font-size: 14px;
}

.loginPage .form-actions a:hover {
    text-decoration: underline;
}

.loginPage button {
    width: 100%;
    padding: 10px;
    background-color: #017a38;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    cursor: pointer;
}

.loginPage button:hover {
    background-color: #07342d;
}

/* end - login */

.custom-checkbox-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    display: inline-block;
    line-height: 24px;
}

.custom-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.custom-checkbox-label:hover .checkmark {
    background-color: #f0f0f0;
}

.custom-checkbox:checked~.checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox:checked~.checkmark:after {
    display: block;
}

.custom-checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Gallery indicator styling */
.artisan-image-container {
    position: relative;
    overflow: hidden;
}

.gallery-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artisan-image-container:hover .gallery-indicator {
    opacity: 1;
}
