.font-14{
    font-size: 14px;
}
.mb-90{
    margin-bottom: 90px;
}
.custom-width-30 {
    width: 30px;
}

.main-wrapper-login {
    min-height: 89vh;               /* full screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;         /* vertical center */
}

.pb-60{
    padding-bottom: 60px !important;
}

.driver-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.driver-toggle input {
    display: none;
}

.toggle-label {
    position: relative;
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-label .toggle-circle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.driver-toggle input:checked + .toggle-label {
    background: #28a745; /* green */
}

.driver-toggle input:checked + .toggle-label .toggle-circle {
    transform: translateX(30px);
}

.status-text {
    font-weight: bold;
    transition: color 0.3s ease;
}

.status-text.active {
    color: #28a745; /* green */
}

.status-text.inactive {
    color: #dc3545; /* red */
}
