/* The Modal (background) */
.modal {
  display: none; /* 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: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  font-size: 12px;
}

/* The Close Button */
.close, .closeun {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  width: 28px;
  text-align: right;
}

.close:hover,
.close:focus {
  color: #33C1FE;
  text-decoration: none;
  cursor: pointer;
}


/*For the login / signup form*/
.tab {
  overflow: hidden;
  border: 1px solid #33C1FE;
  background-color: #f1f1f1;
  font-size: 12px;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  color: #33C1FE;
  font-weight: bold;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #33C1FE;
}

.tabcontent, .tabcontentun {
  display: none;
  padding: 6px 12px;
  border: 1px solid #33C1FE;
  border-top: none;
  margin-right: 28px;
  font-size: 12px;
}

/*For the login forms themselves*/
input[type=text], input[type=password], select, textarea{
  width: 100%;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

input[type=checkbox]{
	margin: 0px;
	border: 1px solid #ccc;
	height: 24px;
	width: 24px;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  font-weight: bold;
  color: #33C1FE;
  font-family: Helvetica, Verdana, Tahoma;
}

input[type=submit] {
  background-color: #33C1FE;
  color: white;
  padding: 8px 20px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  float: right;
  font-weight: bold;
  font-size: 11px;
	
}

h3{
	color: #33C1FE;
	font-weight: bold;
	font-family: Helvetica, Verdana, Tahoma;
}

::-webkit-input-placeholder { /* Edge */
  color: #dbf4ff;
  font-weight: bold;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #dbf4ff;
  font-weight: bold;
}

::placeholder {
  color: #dbf4ff;
  font-weight: bold;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: calc(75% - 20px);
  margin-top: 6px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}