* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	background: #f8f8ff;
}

img {
	max-width: 100%;
}

.header {
	width: 30%;
	margin: 20px auto 30px;
	color: white;
	text-align: center;
	border-bottom: none;
	border-radius: 10px 10px 0px 0px;
	padding: 20px;
}

#signup-step {
    margin: auto;
    padding: 0;
    width: 30%;
	display: flex;
}

#invoice-list {
    margin: auto;
    padding: 0;
    width: 30%;
	display: flex;
	text-align: center;
}

#invoice-list li,
#signup-step li {
    font-size: medium;
    list-style: none;
    float: left;
    padding: 5px 10px;
    border-top: #5f9ea0 1px solid;
    border-left: #5f9ea0 1px solid;
    border-right: #5f9ea0 1px solid;
    border-radius: 5px 5px 0 0;
    background-color: #E0FFFF;
    color: #483D8B;
    opacity: 0.6;
}

#invoice-list li.active,
#signup-step li.active {
    background-color: #5f9ea0;
    color: white;
    opacity: 1;
}

#signup_form {
    clear: both;
    border-color: #5f9ea0;
    border-radius: 0px 0px 5px 5px;
    padding: 20px;
    width: wordwrap;
}

.auth-form,
.content {
	width: 30%;
	margin: 0px auto;
	padding: 20px;
	border: 1px solid #b0c4de;
	background: white;
	border-radius: 10px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid gray;
}

.title_name{
    font-size: 19px;
    text-align:center;
}

.title_name hr{
    margin-top: 10px;
}

.form-group label {
	display: block;
	text-align: left;
	margin: 3px;
}

.error {
	width: 95%;
    font-size: 16px;
	margin: 0px auto;
	padding: 10px;
	border: 1px solid #a94442;
	color: #a94442;
	background: #f2dede;
	border-radius: 5px;
	text-align: left;
}
.success {
	color: #3c763d;
	background: #dff0d8;
	border: 1px solid #3c763d;
	margin-bottom: 20px;
}
img {
	width: 100%;
}
.alert-danger {
	background-color: #fc727a;
}
.alert {
	border: 0;
	border-radius: 0;
	color: #ffffff;
	font-size: 14px;
}
.red-mark {
	color: red;
	margin-top: -3px;
	display: inline-block;
	margin-left: 2px;
}

.forgot-links {
	float: right;
	font-size: medium;
	margin-top: 7px;
	text-align: right;
}
.btn-secondary {
    color: #FFF !important;
    background-color: #5f9ea0;
    width: 100px;
}

.btn-danger {
    background-color: #BB965A;
    margin-left: 15px;
    margin-top: 5px;
    width: 100px;
}
.loginlink{
    font-size: large;
    min-height: 100px;
    line-height: 40px;
    text-align: center;
}
.checkbox-box {
	padding: 10px;
}

/* package cards */
.pack-card {

}
.card-lable{
	display: block;
}
.details-wrapper {
	display: flex;
	justify-content: space-between;
	padding: 2px;
}

.details-wrapper div {
	flex: 1;
	padding: 0.5em;
	text-align: center;
	border-right: 1px solid #fff;
}

.details-wrapper div:last-child {
	border: none;
}

.details-wrapper span {
	display: block;
	margin-top: 30px;
	margin-bottom: 34px;
	font-size: 24px;
	color: #000;
}

.details-wrapper p {
	font-size: 16px;
}

.vertical {
	border-left: 2px solid lightgrey;
	height: 250px;
	position: absolute;
	left: 50%;
}

.signup-error {
    color: #FF0000;
    padding-left: 15px;
}

ul.chec-radio li.pack-card {
    display: inline-block;
}

.chec-radio {
    min-height: 320px;
}

.clab {
    min-height: 100px;
}

.clab h4 {
    text-transform: uppercase;
    font-size: large;
}

.clab p {
    line-height: 1em;
    font-size: 14px;
}

.chec-radio .clab,
.pkg-chec-radio .clab {
    border-radius: 10px;
    cursor: pointer;
    background: #e7e7e7;
    padding: 5px 15px;
    text-align: center;
    color: #333;
    position: relative;
    min-height: 140px;
    width: 90%;
	margin: 10px 0px 10px 32px;
    box-shadow: 0 0 4px gray;
}
 
.chec-radio input[type="radio"],
.pkg-chec-radio input[type="radio"] {
    display: none;
}

.chec-radio input[type="radio"]:checked+div {
    color: #fff;
    background-color: #5f9ea0;
    border: 1px solid lightcyan;
    box-shadow: 0 0 10px gray;
    transition: all 0.5s ease;
}

/* validation error */
.errormessage div {
	background-color: #fc727a;
	color: white;
	padding: 5px 15px;
}

/* The message box is shown when the user clicks on the password field */
#message {
	display: none;
	background: #f1f1f1;
	color: #000;
	position: relative;
	padding: 20px;
	margin-top: 10px;
}

#message p {
	padding: 1px 35px;
	font-size: 12px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
	color: green;
}

.valid:before {
	position: relative;
	left: -35px;
	content: "✔";
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
	color: red;
}

.invalid:before {
	position: relative;
	left: -35px;
	content: "✖";
}

#subscription_form,
#pay_now_form {
	clear: both;
	border-color: #5f9ea0;
	border-radius: 0px 0px 5px 5px;
	padding: 20px;
}

@media (max-width: 1024px) {
	.header,
	.auth-form,
	.content {
		width: 90%;
	}
	#signup-step {
		margin: auto;
		padding: 0;
		width: 90%;
		display: flex;
	}
	#invoice-list {
		margin: auto;
		padding: 0;
		width: 90%;
		display: flex;
	}
	#invoice-list li,
	#signup-step li {
		font-size: 13px;
		width:33%;
		list-style: none;
		float: left;
		padding: 5px 10px;
		border-top: #5f9ea0 1px solid;
		border-left: #5f9ea0 1px solid;
		border-right: #5f9ea0 1px solid;
		border-radius: 5px 5px 0 0;
		background-color: #e0ffff;
		color: #483d8b;
		opacity: 0.6;
	}
	.details-wrapper,
	.chec-radio .radio-inline .clab {
		width: 95%;
		border-radius: 10px;
		padding: 1px 0px;
		margin: 0px;
		margin-bottom: 10px;
		margin-top: 10px;
	}
    .clab p{
        font-size: 12px;
    }
    .btn-secondary{
        width: 90px;
    }
    .btn-danger{
        width: 90px;
    }
	.forgot-links {
		float: none;
		font-size: medium;
		margin-top: 20px;
		text-align: left;
	}
}
@media (max-width: 800px) {
	.header,
	.auth-form,
	.content {
		width: 90%;
	}
	#signup-step {
		margin: auto;
		padding: 0;
		width: 90%;
		display: flex;
	}
	#invoice-list {
		margin: auto;
		padding: 0;
		width: 90%;
		display: flex;
	}
	#invoice-list li,
	#signup-step li {
		font-size: 13px;
		width:33%;
		list-style: none;
		float: left;
		padding: 5px;
		border-top: #5f9ea0 1px solid;
		border-left: #5f9ea0 1px solid;
		border-right: #5f9ea0 1px solid;
		border-radius: 5px 5px 0 0;
		background-color: #e0ffff;
		color: #483d8b;
		opacity: 0.6;
	}
	.forgot-links {
		font-size: small;
	}
	.loginlink{
		font-size: medium;
	}
	.title_name{
		font-size: 16px;
	}
	.error {
		font-size: 14px;
	}
}
@media (min-width: 1024px) {
	.header,
	.auth-form,
	.content {
		width: 30%;
	}

	#signup_form,
	#subscription_form,
	#pay_now_form,
	#pricing_form {
		width: 42%;
	}

	#signup-step {
	margin: auto;
    padding: 0;
    width: 42%;
	display: flex;
	}
	#invoice-list {
	margin: auto;
    padding: 0;
    width: 42%;
	display: flex;
	}
	#signup-step li,
	#signup-step li {
		width: 42%;
		font-size: 14px;
	}
}

.card-details-wrapper p {
    font-size: 15px;
}

.debit-card {
    width: 100%;
    height: 60px;
    padding: 20px;
    background: #e7e7e7;
    border-radius: 5px;
    box-shadow: 3px 3px 5px #0000001a;
    transition: all 0.3s ease-in;
    cursor: pointer;
	margin: 2px 0px 15px 0px;
	color: #333;
}

.select-company {
    padding: 20px;
    background: #e7e7e7;
    border-radius: 5px;
    box-shadow: 3px 3px 5px #0000001a;
    transition: all 0.3s ease-in;
    cursor: pointer;
	margin: 2px 0px 15px 0px;
	color: #333;
}

.select-company:hover,
.debit-card:hover {
	color: #fff;
    background-color: #5f9ea0;
    border: 1px solid lightcyan;
    box-shadow: 0 0 10px gray;
    transition: all 0.5s ease;
}

.card-details-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.alert-success {
	background-color: #5dac51 !important;
}

.card-check input[type="radio"] {
	display: none;
}

.card-check input[type="radio"]:checked+div {
	color: #fff;
    background-color: #5f9ea0;
    border: 1px solid lightcyan;
    box-shadow: 0 0 10px gray;
    transition: all 0.5s ease;
}