* {
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Open Sans', sans-serif;
}

body {
    background: url("../images/header.png"), linear-gradient(to left, #02368d, #007fb9) fixed;
    background-size: cover;
    font-size: .75em;
}

.gbooking-logo-cover {
    display: inline-block;
    padding: 12px;
}

.medme-logo-cover {
    display: inline-block;
    padding: 12px;
}

/* logo Content/Box */
.logo-content {
    margin: 12px 15%; /* 15% from the top and centered */
    padding: 20px;
    width: 80%; /* Could be more or less, depending on screen size */
}

.header-text {
    margin-top: 4px;
}

.header-subtext {
    margin-bottom: 32px;
    color: #333;
}

.header-trial-text {
    color: #4CAF50;
    font-weight: bold;
}

/* Add padding to containers */
.container {
    padding: 32px;
}

/* Full-width input fields */
input[type=text], input[type=email], input[type=password] {
    width: 100%;
    padding: 12px;
    margin: 5px 0;
    display: inline-block;
    border: 1px #929292 solid;
    /*background: #f1f1f1;*/
    background: #fff;
    font-size: 1.1em;
    border-radius: 5px;
}

.form_row {
    margin-bottom: 20px;
}

.form_row_error {
    color: red;
    display: block;
    margin-bottom: 3px;
}

.has-underline {
    margin-bottom: 5px;
}

a.show-psw {
    text-decoration: none;
    color: #333;
    border-bottom: #333 dashed 1px;
}

.form-underline {
    display: block;
}

/*
input[type=text]:focus, input[type=email]:focus, input[type=password]:focus {
  background-color: #fff;
  outline: none;
}*/

/* Set a style for the submit/register button */
.registerbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 240px;
    opacity: 0.9;
    font-size: 20px;
    border-radius: 5px;
}

.registerbtn.disabled {
    background-color: #CCCCCC;
}

.registerbtn:hover {
    opacity: 1;
}

.terms_privacy {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 5px;
}

#terms_privacy {
    margin: 3px 5px 0 0;
    width: 20px;
    height: 20px;
    display: block;
    vertical-align: middle;
}

/* Add a blue text color to links */
a {
    color: dodgerblue;
}

/* Set a grey background color and center the text of the "sign in" section */
.signin {
    background-color: #f1f1f1;
    text-align: center;
}

/* The Modal (background) */
.modal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #f6f6f6;
    margin: 12px auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 1024px; /* Could be more or less, depending on screen size */
    border-radius: 12px;
    box-shadow: 4px 4px 3px black;
}

@media screen and (max-width: 900px) {

    /* Modal Content/Box */
    .modal-content {
        background-color: #f6f6f6;
        margin: 0;
        padding: 20px;
        border: 1px solid #888;
        width: 100%; /* Could be more or less, depending on screen size */
        border-radius: 12px;
    }
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
