﻿.knsh-logo {
    width: 15vw;
    text-align: center;
}

.website-logo {
    text-align: center;
    height: 2rem;
}

#inline-list {
    text-align: center;
    padding-top: 10px;
}

    #inline-list ul li {
        display: inline-block;
        padding-left: 20px;
        padding-right: 20px;
        font-weight: 900
    }

/*password toggle event start*/
.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

    .password-toggle-icon i {
        font-size: 18px;
        line-height: 1;
        color: #333;
        transition: color 0.3s ease-in-out;
        margin-bottom: 20px;
    }

        .password-toggle-icon i:hover {
            color: #000;
        }
/*password toggle event end*/

/* tab page content start*/
.tablinks {
    border: 1px solid #ccc;
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    border-radius: 16px;
    margin: 4px;
}

    /* Style the buttons that are used to open the tab content */
    .tab button {
        background-color: whitesmoke;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 10px 12px;
        transition: 0.3s;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: #ccc;
        }

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    /*border: 1px solid #ccc;*/
    border-top: none;
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* tab page content end*/
