/***
 * 
 ** mcGPSoAuth - v0.01
 ** Css design
 *
*/
* { box-sizing: border-box }
::-webkit-scrollbar{width:15px;background:#fff}
::-webkit-scrollbar-thumb{background-color:#956bae;border:6px solid #fff}
html {
	margin:0;
	padding:0;
	line-height:1;
	width:100%;
	height:100%;
	scroll-behavior: smooth;
}

body{
  margin:0;
  padding:0;
  background-color:#f6f6f6;
  font-family: open sans;
  color:rgba(0,0,0,.8);
  position: relative;
}

.header {
    background: #C71C56;
    position: relative;
    margin: 20px 100px 20px 100px;
	padding: 10px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	border-top-left-radius: 200px;
	border-top-right-radius: 200px;
	text-align: center;
	-webkit-box-shadow: 0 0 3px #C71C56;
    box-shadow: 0 0 3px #C71C56;
	color: #fff;
}

.header a {
    text-decoration: none;
    color: #fff;
}

.box {
    background: #fff;
    position: relative;
    margin: 20px 100px 20px 100px;
	padding: 10px;
	border-radius: 12px;
	text-align: center;
	-webkit-box-shadow: 0 0 10px #C71C56;
    box-shadow: 0 0 10px #C71C56;
    line-height: 20px;
}

.box .title {
	background: #C71C56;
	padding: 8px;
	color: #fff;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 200px;
	border-bottom-right-radius: 200px;
	margin-bottom: 10px;
	-webkit-box-shadow: 0 0 3px #3eb1fc;
    box-shadow: 0 0 3px #3eb1fc;
	line-height: 20px;
}

.box textarea {
	border: 1px solid #C71C56;
	border-radius: 25px;
	padding: 10px;
	margin-bottom: 10px;
	width: 100%;
	height: 130px;
}

.box a {
	text-decoration: none;
}

.box input {
	border: 1px solid #C71C56;
	border-radius: 25px;
	padding: 10px;
	margin-bottom: 10px;
	width: 100%;
}

*:focus {
    outline: none;
}

.box button {
	background: #C71C56;
	color: #fff;
	border: 1px solid #C71C56;
	border-radius: 25px;
	padding: 10px;
	-webkit-box-shadow: 0 0 3px #3eb1fc;
    box-shadow: 0 0 5px #3eb1fc;
}

.box button:hover {
	cursor: pointer;
}

.footer {
    background: #C71C56;
    position: relative;
    margin: 20px 100px 20px 100px;
	padding: 10px;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 200px;
	border-bottom-right-radius: 200px;
	text-align: center;
	-webkit-box-shadow: 0 0 3px #C71C56;
    box-shadow: 0 0 3px #C71C56;
	color: #fff;
}

.footer a {
    text-decoration: none;
    color: #fff;
}

@media only screen and (min-width:0px) and (max-width:500px) {
	.box, .header, .footer{
		margin: 8px;
	}
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #C71C56;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 35%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #3eb1fc transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}