html, body, main  {
    width: 100%;
    height: 100%;
}

body {
    overflow: hidden;
}

.container-fluid  {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header {
    display: flex;
    height: 35px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#header > #logo {
    height: 100%;
    background: url('/icons/logo.svg') no-repeat;
    width: 30px;
}

#header > #name {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 0.3px;
    color: #65a30d;
}

#title {
    font-size: 22px;
    font-weight: 600;
    line-height: 33px;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(32, 34, 36, 1);
}

#forgot-pincode-block {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

#forgot-pincode-button {
    width: auto;
    font-size: 14px;
    padding: 0;
    text-align: right;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.popup-forgot-pincode {
    display: none;
}

.popup-forgot-pincode:before {
	content: '';
	background-color: rgba(255,255,255,.65);
	position: fixed; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	opacity: 1;
	z-index: 1501;
}

.popup-forgot-pincode > .content {
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 10px;
    width: 90%;
    max-width: 350px;
    background: #fff;
    z-index: 99999;
    opacity: 1;
    height: 150px;
    margin: auto;
    left: 0;
    display: flex;
    flex-direction: column;
    right: 0;
    border: 1px solid #ddd;
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    border-radius: 6px;
}

.popup-forgot-pincode > .content > .buttons {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    font-size: 14px;
}

.popup-forgot-pincode > .content > .message {
    height: auto;
    text-align: center;
    padding: 10px;
}

.popup-forgot-pincode > .content > .buttons > a {
    padding: 7px 15px;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}

#reset-pincode {
    background: #368bbd;
}

#reset-pincode:hover {
    color: white;
    background: rgb(54, 139, 189, 0.9);
}

#close-pincode-popup {
    background: #818181;
}

#close-pincode-popup:hover {
    color: white;
    background: rgb(129, 129, 129, 0.9);
}

#notify {
    display: none;
    position: absolute;
    bottom: 30px;
    margin: auto;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 32px;
    padding: 10px 20px;
    box-shadow: 0 2px 3px 0 transparent;
    border-radius: 6px;
    right: 0;
    left: 0;
    width: fit-content;
}

.notify-success {
    background-color: #5cb85c;
}

.notify-error {
    background-color: #d9534f;
}