@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');


body {
    font-family: 'Open Sans', sans-serif;
    color: #2c353e;
    font-size: 14px;
    background: transparent;
}


label {
    color: #2c353e;
    text-transform: uppercase;
}


.commission {
    border: 1px solid #2c353e;
    color: #2c353e;
}

.commission .porcentage {
    font-size: 115px;
}


.commission .type {
    font-size: 28px;
}

.btn-primary {
    background: #ff0939;
    border: 0;
    font-size: 20px;
    font-weight: bold;
}

.error {
	text-transform: lowercase;
	color: red;
	font-size: 11px;
}

	.error b, strong {
		font-weight: normal !important;
	}

.btn-primary:hover {
	background: #bb0025;
}	


.commission .detail {
	font-size: 14px;
}


.form-control {
    background: #d1d1d1 !important; 
}



.confirm-message {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  font-size: 27px;
  text-align: center;
  text-transform: uppercase;
  padding: 5%;
  background: #f0f0f0;
  font-size: 22px;
}

  .confirm-message h1 {
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
    color: red;
    font-size: 28px;
    text-align: center;
  }

  .affform{
	position: relative;
}

.affform label[for="Password"]::before {
    content: "Min 2 - Max 10 characters";
    position: absolute;
    top: 435px; 
    left: 155px; 
    background-color: #f5f5f5;
    color: #333;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0; 
    transform: translateY(10px); 
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 10;
}

.affform label[for="Password"]:has(+ input#Password:hover)::before,
.affform label[for="Password"]:has(+ input#Password:focus)::before {
    opacity: 1; 
    transform: translateY(0); 
}

.affform label[for="Password"]::before {
    opacity: 0; 
    transform: translateY(10px); 
}