div{
	box-sizing: border-box;
}
.rc-login-wrap{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	height: 100VH;
	overflow: hidden;
}

.rc-app-list-wrap{
	max-width: 600px;
	color: white;
}
.rc-app-list-title{
	padding: 30px 0px;
	font-size: 28px;
}
.rc-app-list-content{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-row-gap: 20px;
	grid-column-gap: 60px;
}
.rc-app-list{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.rc-app-name{
	font-size: 18px;
}

.rc-app-list-icon{
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #2D6FFF;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rc-app-list-icon img{
	height: 12px;
	width: auto !important;
}
.rc-login-left {
	background-image: url('../image/login-img.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rc-login-left img{
	width: 100%;
}
.rc-login-right{
	min-height: 100VH;
	padding: 10%;
	position: relative;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;	
}
.rc-login-logo{
	padding-top: 50px;
	margin-bottom: 50px;
}
.rc-login-logo img{
	height: 30px;
}

.rc-login-title{
	padding-top: 30px;
	font-size: 24px;
}
.rc-login-input{
	margin-top: 20px;
}
.rc-login-input label{
	color:#10182F;
}
.rc-login-input input, .rc-login-button .btn{
	height: 50px ;
	max-width: 500px ;
}
.form-control:focus{
	box-shadow: none !important;
}
.rc-login-button{
}
.rc-login-main{
	padding-top: 10px;
}
.rc-login-forgot-pass{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.rc-login-remember-wrap{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.btn-success {
	background: #2D6FFF !important;
	border: 1px solid #2D6FFF;
}
.btn-default{
    border: 1px solid #d4d4d4;
    display: flex;
    justify-content: center;
    align-items: center;
}
.rc-login-error{
	color: red;
	height: 20px;
}
.rc-login-add-action{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 20px;
}
@media (max-width: 768px) {
	.rc-login-wrap{
		display:block;
	}	
	.rc-login-left{ 
		display: none;
	}
}