	
	/* 
	########################################

	Attention!

	This document is protected by copyright.

	########################################
	*/

	/* */

	:root{
		--padding-tb: 16px;
		--padding-lr: 30px;
		--box-shadow: 0 0 4px rgb(0 0 0 / 0.1), 0 1px 2px rgb(0 0 0 / 0.1);
		--ui-box-shadow: 0 4px 16px rgba(0, 0, 0, .12), 0 0 0 1px rgba(0, 0, 0, .02);
		--ui-box-shadow-beta: 0px -1px 4px rgba(88, 104, 116, 0.12), 0px 16px 32px rgba(88, 104, 116, 0.20);

		/*--ui-input-border: #e4e4e7;*/
		--ui-input-border: #F0F0F0;
		--ui-color-black: #111111;
		--ui-color-grey: #F1F1F1;
		--ui-color-blue: #1a73e8;
		--ui-color-red: #FF3B30;
		--ui-color-yellow: #ffb31b;

		--ui-color-red-background: rgba(255, 59, 48, 0.15);
	}

	@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

	body{
		font-family: 'Inter', sans-serif;
		margin: 0;
		background: #FFF; /*F0F0F0*/ /* F6F6F6 */
		color: #010101;

		width: 100%;
		height: 100svh;
		display: flex;
		align-content: center;
		justify-content: center;
		flex-wrap: wrap;
	}

	* {
	    box-sizing: border-box;
	}

	a {
	  text-decoration: none;
	}

	.hide_element{ 
		display: none;
	}

	h1{
		margin: 0;
		width: 100%;
		text-align: center;
		font-size: 20px;
		font-weight: 590;
		margin-top: 25px;
	}

	/**/

	.wrap{
		width: 100%;
		display: flex;
		align-content: center;
		justify-content: center;
		position: revert;
	}

	/**/

	.brand{
		box-sizing: unset;
		width: 80px;
		object-fit: contain;
		flex-grow: 0;
		user-select: none;
		pointer-events: none;
	}

	.center{
		width: 100%;
		max-width: 425px;
		flex-shrink: 0;
		margin: 40px 0;

		padding: 35px 22px;
		border-radius: 12px;
		border: 1px solid #eee;
	}
	.center .ui-information{
		padding-top: 0px;
	}

	.password-information{
		width: 100%;
		display: flex;
		align-content: center;
		justify-content: space-between;
		align-items: center;
	}

	.btn-forget-password{
		width: max-content;
		margin: 0;
		font-size: 12px;
		opacity: .7;
		user-select: none;
		cursor: pointer;
		border-bottom: 1px solid transparent;
		padding-bottom: 1px;
		white-space: nowrap;
		margin-top: -2px;
		text-decoration: none !important;
		color: var(--ui-color-black);
	}
	.btn-forget-password:hover{
		border-bottom: 1px solid #010101;
	}

	.password{
		display: flex;
		align-items: center;
		align-content: center;
		justify-content: center;
		position: relative;
	}

	.password-icon{
	    box-sizing: unset;
	    width: 17px;
	    padding: 10px;
	    cursor: pointer;
	    position: absolute;
	    right: 0;
	    margin-top: -22px;
	    user-select: none;
	    margin-right: 4px;
	    opacity: .6;
	    transition: all 0.2s ease;
	}
	.password-icon:hover{
		opacity: 1;
	}

	/**/

	.notallowed-btn{
		pointer-events: none !important;
		user-select: none !important;
		background: var(--ui-color-grey) !important;
    	color: #cccccc !important;
    	cursor: not-allowed !important;
	}

	/**/

	.legal{
		color: #767676;
		margin: 0;
		font-size: 11px;
		opacity: .8;
		width: 100%;
		text-align: center;
	}

	.legal open{
		border-bottom: 1px solid #76767640;
		cursor: pointer;
	}

	.legal open:hover{
		border-bottom: 1px solid #767676;
	}

	/**/

	.modal{
		width: 100%;
		height: 100svh;
		display: flex;
		align-content: center;
		justify-content: center;
		flex-wrap: wrap;
		background: #FFF;
		z-index: 99;

		position: fixed;
		left: 0; top: 0; right: 0;
	}

	.modal img{
		box-sizing: unset;
		width: 21px;
		user-select: none;
		pointer-events: none;
	}

	.modal .ui-btn{
		max-width: 340px;
		margin-top: 60px;
	}