@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');

html, body{
    height: 100%; 
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

main {
    flex-grow: 1;        
}

h1{
    color: #36454F;
}

.required{
    color:red;
}

label{
    font-size: 15px;
}

#label{
    font-size: 8px;
}

.tel{
    width: 30px !important;
}

button{
    display: inline-block;
}

.child-input {
    margin-bottom: 10px;
    margin-right: 10px; 
}

.child-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.living-with-select {
    margin-top: 5px;
}

.container-upload{
    width: 1100px;
    height: 120px;
    background-color: white;
    border: 1px solid #9C9C9C;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 50px auto; 
}
    
#upload_button{  
    background-color:#02355c;
    color: white;
    padding: 0.5rem;
    font-family: sans-serif;
    border-radius: 0.3rem;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 13px;
}

.form-control{
    height: 35px;
    font-size: 18px;
    font-weight: 500;
    background-color: #E8E9EB;
}

.form-control.select-custom-height {
    height: 31px !important;
    background-color:#E8E9EB;
}

.form-select{
    background-color: #E8E9EB !important;
}

@media all and (max-width:700px){
	.container-upload {
		height: 150px;
        width: 90%;
	}
}

@media all and (max-width: 1200px) and (min-width: 700px){
	.container-upload {
		height: 150px;
        width: 90%;
	}
}

.btn-primary{
    background-color: #ffa500;
    border: 0;
}

.btn-primary.hover{
    background-color: #ffa500;
}

.float-end:hover{ 
    background-color: #ffa500;
}
.btn.btn-success.btn-circle {
    background-color: #ffa500;
    color: black; 
    border-color: #ffa500;
}

.btn-secondary{
    background-color: #0b265b !important;
    
}
.step.active p {
  color: #ffa500;
}

.stepwizard-step p {
    margin-top: 0px;
    color: black;
    font-weight: bold;
}

.stepwizard-row {
    display: table-row;
}

.stepwizard {
    display: table;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    margin-top: 30px;
}

.stepwizard .btn.disabled, .stepwizard .btn[disabled], .stepwizard fieldset[disabled] .btn {
    opacity:1 !important;
    color:black;
}

.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content:" ";   
    height: 1px;
    background-color: #ccc;
    z-index: 0;
}

.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.btn-success {
    background-color: #ffa500 !important; 
    border-color: #ffa500 !important;     
    color: #fff !important;              
}

.btn-success:hover,
.btn-success:focus {
    background-color: #ffa500 !important; 
    border-color: #ffa500 !important;
    color: #fff !important;
}

.step-btn {
  width: 70px;       
  height: 70px;       
  line-height: 50px;         
  font-weight: bold;
  font-size: 2rem;
  color:white;
    position: relative;
    z-index: 1;
}

.step p {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

@media (max-width: 576px) {
  .step-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 0.9rem;
  }
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.form-control.children {
    width: 200px;
}

.form-control-children h3 {
    font-size: 15px;
    margin-right: 30px; 
}

.form-control-children select {
    width: 150px;
    height: 35px;
}

.error-message {
    color: red;
    font-size: 10px;
    margin-top: 5px;
}

.spinner {
    display: none;
    margin: auto;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

#emailError_, #passwordError, #mobileError{
    display: none;
    color: red;
    font-size: 9px;
}

.panel-heading{
    font-size: 12px;
    background-color: #004AAD;
}

#mobileError, #emailError{
    display: none; 
    color: red; 
    font-size: 13px;
}

.note{
    font-size:11px; color:red
}

.password{
    font-size: 10px;
}

.setup-panel {
    position: relative;
}

.step {
    position: relative;
}

.step::before {
    content: "";
    position: absolute;
    top: 35px; 
    left: -50%;
    width: 100%;
    height: 1px;
    background: #d3d3d3;
    z-index: 0;
    transition: background 0.3s ease;
}

.step:first-child::before {
    content: none;
}