﻿* {
  box-sizing: border-box;
}

body {
  background-color: #f1f1f1;
}



#regForm {
  background-color: #ffffff;
  margin: 50px auto;
  font-family: Raleway;
  padding: 30px;
  width: 80%;
  min-width: 300px;
}

h1 {
  text-align: center;  
}

.bgModalCorrecto {
    background-color: rgb(31, 97, 141);
}

input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
    input.invalid {
        /*background-color: #ffdddd;*/
        border-color: red;
    }

    input.valid {
        /*background-color:white;*/
        border: 1px solid #ced4da;
    }


/* Hide all steps by default: */
.tab {
  display: none;
}

button {
    background-color: rgb(253,180,22);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    font-family: Raleway;
    cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 20px;
  width: 20px;
  margin: 0 5px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
    .step.finish {
        background-color: rgb(253,180,22);
        /*border-color:gray;*/
    }



.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}

.avatar2 {
    width: 250px;
	height:200px;
}



.btn-circle {
    width: 25px;
    height: 25px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}

    .btn-circle.btn-lg {
        width: 30px;
        height: 30px;
        padding: 1px 3px;
        font-size: 15px;
        line-height: 1.33;
        border-radius: 25px;
    }