body,
html {
	margin: 0;
	padding: 0;
	height: 100%;
	background:
		radial-gradient(circle closest-side at 60% 43%, #f4f4f4 26%, rgba(187,0,51,0) 27%),
		radial-gradient(circle closest-side at 40% 43%, #f4f4f4 26%, rgba(187,0,51,0) 27%),
		radial-gradient(circle closest-side at 40% 22%, #FFD5DC 45%, rgba(221,51,85,0) 46%),
		radial-gradient(circle closest-side at 60% 22%, #FFD5DC 45%, rgba(221,51,85,0) 46%),
		radial-gradient(circle closest-side at 50% 35%, #FFD5DC 30%, rgba(221,51,85,0) 31%),

		radial-gradient(circle closest-side at 60% 43%, #f4f4f4 26%, rgba(187,0,51,0) 27%) 50px 50px,
		radial-gradient(circle closest-side at 40% 43%, #f4f4f4 26%, rgba(187,0,51,0) 27%) 50px 50px,
		radial-gradient(circle closest-side at 40% 22%, #FFD5DC 45%, rgba(221,51,85,0) 46%) 50px 50px,
		radial-gradient(circle closest-side at 60% 22%, #FFD5DC 45%, rgba(221,51,85,0) 46%) 50px 50px,
		radial-gradient(circle closest-side at 50% 35%, #FFD5DC 30%, rgba(221,51,85,0) 31%) 50px 50px;
		background-color: #f4f4f4;
		background-size:100px 100px;
}
.user_card {
	height: 400px;
	width: 350px;
	margin-top: auto;
	margin-bottom: auto;
	background: #ffffff;
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 10px;
	box-shadow: 0 4px 8px 0 rgba(240,128,128, 0.2), 0 6px 20px 0 rgba(240,128,128, 0.19);
	-webkit-box-shadow: 0 4px 8px 0 rgba(240,128,128, 0.2), 0 6px 20px 0 rgba(240,128,128, 0.19);
	-moz-box-shadow: 0 4px 8px 0 rgba(240,128,128, 0.2), 0 6px 20px 0 rgba(240,128,128, 0.19);
	border-radius: 5px;

}
.brand_logo_container {
	position: absolute;
	height: 170px;
	width: 170px;
	top: -75px;
	border-radius: 50%;
	background: #F08080;
	padding: 10px;
	text-align: center;
}
.brand_logo {
	height: 150px;
	width: 150px;
	border-radius: 50%;
	border: 2px solid #F08080;
}
.form_container {
	margin-top: 100px;
}
.login_btn {
	width: 100%;
	background: #F08080 !important;
	color: white !important;
}
.login_btn:focus {
	box-shadow: none !important;
	outline: 0px !important;
}
.login_container {
	padding: 0 2rem;
}
.input-group-text {
	background: #F08080 !important;
	color: white !important;
	border: 0 !important;
	border-radius: 0.25rem 0 0 0.25rem !important;
}
.input_user,
.input_pass:focus {
	box-shadow: none !important;
	outline: 0px !important;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
	background-color: #F08080 !important;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057 !important;
    background-color: #fff !important;
    background-clip: padding-box;
    border: 1px solid #ced4da !important;
    border-radius: .25rem;
        border-top-left-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.alert-danger {
    color: #f08080 !important;
    background-color: #fff !important;
    border-color: #f5c6cb !important;
}

.alert {
    position: relative;
    margin-bottom: 1rem;
    border: 1px solid transparent;
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    border-radius: .25rem;
    padding-top: 1rem !important;
    padding-bottom: 0rem !important;
}

/* on mobile browsers, I set a width of 100% */
table.mceLayout, textarea.tinyMCE {
    width: 975px !important;
}

/* on large screens, I use a different layout, so 600px are sufficient */
@media only screen and (min-width: 600px) {
    table.mceLayout, textarea.richEditor {
       width: 315px !important;
    }
}