﻿@import url('https://fonts.googleapis.com/css?family=Poppins');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins','Helvetica', 'Arial', 'sans-serif';
}

.modal-body {
	padding: 2rem;
	font-size: 16px;
}

.modal-header {
	display: initial;
	font-size: 16px;
}

section {
	position: relative;
	min-height: 100vh;
	/*background: #fee648;*/
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

	section .container {
		position: relative;
		width: 800px;
		height: 500px;
		background: #fff;
		box-shadow: 0 15px 50px rgba(0,0,0,0.1);
		overflow: hidden;
	}

		section .container .user {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			display: flex;
		}

			section .container .user .imgBx {
				position: relative;
				width: 50%;
				height: 100%;
				/*background: #ff0;*/
				transition: 0.5s;
				background-color: #e8171f;
			}

				section .container .user .imgBx .greeting {
					position: relative;
					width: 100%;
					height: 100%;
					font-size: 25px;
					font-weight: 600;
					/*text-transform: uppercase;*/
					letter-spacing: 2px;
					text-align: center;
					margin-bottom: 10px;
					color: #fff;
					transition: 0.5s;
					display: flex;
					justify-content: center;
					align-items: center;
				}


			section .container .user .formBx {
				position: relative;
				width: 50%;
				height: 100%;
				background: #fff;
				display: flex;
				justify-content: center;
				align-items: center;
				padding: 40px;
				transition: 0.5s;
			}

				section .container .user .formBx form h2 {
					font-size: 18px;
					font-weight: 600;
					text-transform: uppercase;
					letter-spacing: 2px;
					text-align: center;
					width: 100%;
					margin-bottom: 10px;
					color: #555;
				}

				section .container .user .formBx form input {
					position: relative;
					width: 100%;
					padding: 10px;
					background: #f5f5f5;
					color: #333;
					border: none;
					outline: none;
					box-shadow: none;
					margin: 8px 0;
					font-size: 14px;
					letter-spacing: 1px;
					font-weight: 300;
				}

					section .container .user .formBx form input[type="submit"] {
						max-width: 100px;
						background: #e8171f;
						color: #fff;
						cursor: pointer;
						font-size: 14px;
						font-weight: 500;
						letter-spacing: 1px;
						transition: 0.5s;
					}

				section .container .user .formBx form .loginp {
					position: relative;
					margin-top: 20px;
					font-size: 12px;
					letter-spacing: 1px;
					color: #555;
					text-transform: uppercase;
					font-weight: 300;
				}

					section .container .user .formBx form .loginp .login {
						font-weight: 600;
						text-decoration: none;
						color: #e8171f;
					}

		section .container .signinBx .formBx {
			left: 0;
		}

		section .container.active .signinBx .formBx {
			left: 100%;
		}

		section .container .signinBx .imgBx {
			left: 0;
		}

		section .container.active .signinBx .imgBx {
			left: -100%;
		}

@media (max-width: 991px) {
	section .container {
		max-width: 400px;
	}

		section .container .imgBx {
			display: none;
		}

		section .container .user .formBx {
			width: 100%;
		}
}
