body {
    font-family: "Segoe UI", Arial, sans-serif;
}

header {
    text-align: center;
    padding: 20px;
}

.center-wrap{
    width: 70%;
    padding: 0 0 20px 0;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #0171BA;
}

.center-cont{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;    
}
.center-cont img {
    max-width: 70px;
    margin-right: 20px;
}
.center-name{
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
}
h1 {
    font-size: 24px;
    margin: 0;
    margin-top: 20px;
}
h2{
    margin: 0 0 10px 0;
    text-align: center;
}

p {
    font-size: 18px;
    margin: 5px auto;
    width: 70%;
}
header p:nth-child(4){
    color: #0171BA;
}
.span-bold{
    font-weight: 600;
}
#language-switch {
    text-align: right;
    margin-top: 10px;
    display: block;
}
#site-language{
    border: none;
    outline: none;
}

label {
    font-weight: bold;
}

form {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 5px;
    position: relative;
}

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

input{
    padding:10px;
    border: 1px solid black;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"] {
    width: 96%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
form input[type="submit"]{
	cursor: pointer;
}

.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.confirm{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.confirm label{
    margin: 0 0 0 10px;
}
.submit{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 10px;
}
.submit button {
    width: 50%;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
output {
    display: none;
}
output.active {
    position: absolute;
    display: block;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
    max-height: 300px;
    overflow-y: scroll;
    top: 70px;
    left: 0;
    background-color: white;
    z-index: 2;
}
output option{
    border-bottom:2px solid #eee;
    padding: 15px;
}



