﻿.form-icon-container {
    position: relative;
}

.btn-toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
}

input[type="password"]::-ms-reveal {
    display: none;
    /* Or, less drastically, but still not recommended */
    /* opacity: 0; */
    /* width: 0; */
    /* height: 0; */
}
/* For other browsers (though most will ignore this) */
input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-credentials-control,
input[type="password"]::-webkit-inner-spin-button,
input[type="password"]::-webkit-outer-spin-button {
    display: none !important;
    -webkit-appearance: none !important;
    margin: 0 !important;
}
/*  Another attempt, may be ignored by modern browsers */
input[type="password"] {
    -webkit-text-security: disc; /* Standardized, but not for the icon itself */
}

body {
    background-image: url('../../../Panashi/KBbackgroundImage.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.login-section {
    background-color: white;
    padding: 20px; /* Adjust the padding as needed */
    border-radius: 10px; /* Adjust the border-radius for rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@@media (max-width: 768px) {
    .mobile-logo img {
        width: 120px !important; /* Set width to 120px for mobile */
    }

    .mob-box {
        margin: 0 20px;
    }
}
