.pixelforce-logo{
    margin: auto;
    padding-bottom: 10px;
}

.pixelforce-logo img{
    width: 40px;
}
.pixelforce-logo h2{
    font-size:medium;
    font-family:Arial, Helvetica, sans-serif;
    color:black;
}
.sign-in-button{
    background-color: #0030f6;
    color: white;
    border-width: 1px; /* Width of the border */
    border-style: solid; /* Style of the border */
    border-color: #0030f6; /* Color of the border */
}
.login-other-button{
    color:black
}
.bg-image {
    background-image: url("../vuexy/images/pages/login-images.png");
    background-size: cover;
    background-repeat: no-repeat;  /* Prevents repeating if the image doesn’t fully cover */
    background-position: center;  
}

.toggle-buttons {
    display: flex;
    gap: 10px;
}

.toggle-button {
    position: relative;
    display: inline-block;
    padding: 6px 12px; /* Compact padding */
    background-color: #e0e0e0; /* Default background color */
    border: 2px solid #ccc; /* Default border color */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.toggle-button:hover {
    background-color: #d0d0d0; /* Hover background color */
}

.toggle-input {
    display: none; /* Hide the checkbox */
}

/* Change the entire button's background and border color when selected */
.toggle-input:checked + .toggle-button {
    background-color: #0030f6; /* Selected background color */
    border-color: #0030f6; /* Selected border color */
}

.toggle-input:checked + .toggle-button .toggle-label {
    color: #fff; /* Text color when selected */
}

.toggle-input:checked + .toggle-button .checkmark {
    opacity: 1; /* Show checkmark when selected */
}

.toggle-label {
    font-size: 14px; /* Smaller font size */
    color: #333; /* Default text color */
    padding-right: 20px; /* Space for the checkmark */
    transition: color 0.3s;
}

.checkmark {
    position: absolute;
    top: 50%;
    right: 8px; /* Position the checkmark */
    transform: translateY(-50%);
    font-size: 16px; /* Checkmark size */
    color: #4CAF50; /* Green checkmark */
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s;
}

.disabled-label {
    color: #888; /* Texte encore plus clair */
    cursor: not-allowed;
    opacity: 0.5; /* Augmenter la transparence */
}

.toggle-input:disabled + .toggle-button {
    background-color: #ddd; /* Plus clair pour mieux contraster */
    border-color: #bbb;
    text-decoration: line-through; /* Optionnel pour plus de clarté */
}
