html, body{

	font-size: 14px;
	font-family: "Google Sans",Roboto,Arial,sans-serif;
	color: rgb(32, 33, 36);
}

div, span, button, label, input, table, select, nav{
	font-family: "Google Sans",Roboto,Arial,sans-serif;
}
html {
    background-color:#FFF8F7;
}
body {
    height: 100vh;
}

.loginsection {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: #fff;
    width: 33rem;
    height: 36rem;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    /* display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem; */
}
.loginsection .logo img{
    height: 4rem;
}

.title {
    color: #202124;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.show_hide_pass {
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    top: 0;
    top: 0.6rem;
    right: 2rem;
    cursor: pointer;
}

/* notification begin */
.shinobinotification {
    opacity: 0;
    display: none;
    right: 2rem;
    color: white;
    width: 20rem;
    position: fixed !important;
    z-index: 100;
    top: 5rem;
    box-shadow: 0 2px 4px rgba(15, 14, 14, 0.1), 0 0 0 1px rgba(13, 13, 13, 0.1);
    transition: opacity 1s, backgorund 1s ease-in-out;
    background-color: #3465a4;
}

.shinobinotification.info-message {
    opacity: 0.8;
    display: block;
    background-color: #3465a4;
}

.shinobinotification.error-message {
    opacity: 0.8;
    display: block;
    background-color: #ff3860;
}

.shinobinotification.loading-message {
    opacity: 0.8;
    display: block;
    background-color: #3465a4;
    max-width: 10em;
    padding-right: 0.5rem;
}

.shinobinotification .columns {
    display: flex;
}

.shinobinotification .columns .is-loading {
    max-width: 3rem;
}
.text-placeholder {
    color: var(--Placeholder, #999);

}
/*notification end  */