.content-wrapper
{
	display: flex;
	width: 100%;
	max-width: 1200px;
	height: 95%;
	margin: 0 20px;
}

.side-space
{
	flex: 1;
}

.center-content
{
	flex: 0 0 600px;
	max-width: 100%;
	position: relative;
	text-align: center;
	/* background-color: rgba(255, 255, 255, 0.8); */
	padding: 3px 20px 0 20px;
	/* border-radius: 10px; */
	overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.bottom-fixed
{
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
}

.center-content p
{
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 1.1em;
}

.center-content button
{
	margin-top: 20px;
}

.center-image
{
	width: 80%;
	height: auto;
	max-width: 512px;
	margin-top: 5px;
}

.logo-ltr
{
	position: absolute;
	top: 10px;
	left: 10px;
}

.logo-ltr img
{
	width: 64px;
	height: auto;
	object-fit: contain;
}

.logo-rtl
{
	position: absolute;
	top: 10px;
	right: 10px;
}

.logo-rtl img
{
	width: 64px;
	height: auto;
	object-fit: contain;
}

.input-group
{
	display: flex;
	max-width: 400px;
	margin: 0 auto;
}

.input-group .form-control
{
	flex: 1;
	margin-right: 10px;
}

.input-group .form-control, .input-group .btn
{
	margin-top: 20px;
	max-width: 400px;
	margin: 0 auto;
	height: 45px;
	text-align: center;
}

.form-control:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.phone-input-container
{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
	border-radius: 8px;
	background-color: #ffffff;
    overflow: hidden;
    padding-left: 4em;
    position: relative;
}

.country-code
{
    position: absolute;
    left: 15px;
    color: #333;
    font-size: 1em;
    pointer-events: none;
	border-right: 1px solid #ccc;
    z-index: 1000;
	padding: 0 0.5em;
}

.phone-input
{
    flex: 1;
    border: none;
    outline: none;
	padding: 0.5em;
	padding-left: 1em;
    font-size: 1em;
    box-sizing: border-box;
	margin-left: 1em;
    position: relative;
}