
body {
    height: 100%;
    margin: 0;
    font-family: "sf pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: white;
}
* {box-sizing: border-box}

/* Full-width input fields */
input[type=text], input[type=password], input[type=number], input[type=email] {
    width: 100%;
    padding: 9px;
    margin: 5px 0 12px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
    font-size: 14px;
}
input[type=text]:focus, input[type=password]:focus, input[type=number]:focus, input[type=email]:focus   {
    background-color: #ddd;
    outline: none;
}

hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

/* Set a style for all buttons */
button {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
    font-size: 20px;
}

button:hover {
    opacity:1;
}

button:active {
    box-shadow: 1px -1px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(1px);
}
/* Extra styles for the cancel button */
.cancelbtn {
    padding: 14px 20px;
    background-color: #f44336;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .signupbtn {
    float: left;
    min-width: 140px; /* ensures button is at least 140px wide */
    width: auto;      /* allows button to expand if content is larger */
    margin-left:5%;
    border-radius: 4px;
    -webkit-font-smoothing: antialiased;
    border: 1px solid #07c;
}

/* Add padding to container elements */
.container {
    padding: 16px;
}

/* Clear floats */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 300px) {
    .cancelbtn, .signupbtn {
        width: 100%;
    }
}

.custom-select {
    position: relative;
    font-family: helvetica;
}
.custom-select select {
    display: none; /*hide original SELECT element:*/
}
.select-selected {
    background-color: #d3d3d3;
}
/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
    color: #000000;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}
/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #d3d3d3;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 15px;
}
/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}
.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}
.create-free-accounts-btn {
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.create-free-accounts-btn:hover {
    background-color: #555555;
}
.create-free-accounts-btn:active {
    background-color: #444444;
    box-shadow: 1px -1px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(1px);
}