﻿/*added style*/
.input-login {
    border: 1px solid var(--bs-border-color, #686868);
    border-radius: 8px;
    padding: 10px 14px;
    transition: all 0.3s ease;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}

    .input-login:focus {
        outline: none;
        border-color: #308e87;
        box-shadow: 0 0 0 3px rgba(48, 142, 135, 0.15);
    }

.show-hide {
    cursor: pointer;
    user-select: none;
}

    .show-hide span {
        font-size: 16px;
        color: #308e87;
    }
.login-bg-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    opacity: 0.4;
}

.login-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}