/* It's a CSS file */
@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500&display=swap');

* {
	box-sizing: border-box;
}

body {
	background-color: aliceblue;
	font-family: 'Open Sans', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 90vh;
	margin: 0;
}

.container {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	width: 400px;
	max-width: 100%;
}

.label {
/*        background-color: #f7f7f7; */
        padding: 0px 0px;
}

.lable h3 {
        margin: 0;
}

.header {
	position: relative;
        padding: 0;
        margin: 0;
}

.header h2 {
	margin: 0;
}

.form {
	padding: 30px 20px;
}

.form-control {
	margin-bottom: 10px;
	padding-bottom: 20px;
	position: relative;
}

.form-control label {
	display: inline-block;
	margin-bottom: 5px;
}

.form-control input {
	border: 2px solid #f0f0f0;
	border-radius: 4px;
	display: block;
        font-family: inherit;
        font-size: 14px;
	padding: 10px;
	width: 100%;
} 

.form-control.success input {
	border-color: #2ecc71;
}

.form-control.error input {
        border-color: #e74c3c;
}

.form-control select {
        border: 2px solid #f0f0f0;
        border-radius: 4px;
        display: block;
        font-family: inherit;
        font-size: 14px;
        padding: 10px;
        width: 100%;
}

.form-control.success select {
        border-color: #2ecc71;
}

.form-control.error select {
        border-color: #e74c3c;
}

.form-control i {
	position: absolute;
	top: 40px;
	right: 10px;
	visibility: hidden;
}

.form-control.success i.fa-check-circle {
	color: #2ecc71;
	visibility: visible;
}

.form-control.error i.fa-exclamation-circle {
        color: #e74c3c;
        visibility: visible;
}

.form-control small {
	visibility: hidden;
	position: absolute;
	bottom: 0;
	left: 0;
}

.form-control.error small {
        color: #e74c3c;
        visibility: visible;
}

.form button {
        border-radius: 5px;
        color: #fff;
        display: block;
        font-family: inherit;
        font-size: 14px;
        padding: 5px;
        width: 180px;
        margin: 0px;
}

button.blue {
        background-color: #335495;
/*        background-color: #003399; */
        border: 2px solid #003399;
}

button:disabled {
        background-color: grey;
        border: 2px solid grey;
        color: lightgrey;
}

.form button:hover:enabled {
        cursor: pointer;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#div2 {
        background-color: #335495;
        border-bottom: 1px solid #335495;
        color: white;
        text-align: center;
        margin: 0px;
}

#div2 p {
        margin: 0;
        padding: 5px;
        font-size: 13px;
}


#div4 {
        display: flex;
        flex-row: row nowrap;
        justify-content: center;
        padding: 5px;
}

        /* Modal Styles - custom alert() */
        .modal {
            display: none;
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background: white;
            padding: 20px;
            border-radius: 10px;
            width: 80%;
            text-align: center;
        }
        .phone-number {
            font-size: 18px;
            font-weight: bold;
            color: blue;
            cursor: pointer;
        }

	.button-ok {
            font-size: 14px;
	}

