body {
    font-family: Roboto;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    background-color: #f2f4f8;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.container {
    width: 90%;
    margin: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 1300px) {
    .container {
        width: 50%;
    }
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header .header-title {
    font-weight: 400;
    font-size: 2em;
    color: #000;
    margin-top: 20px;
    margin-bottom: 15px;
}

.header .header-hr {
    background-color: #e51170;
    width: 150px;
    height: 5px;
    margin-bottom: 15px;
}

.header .header-subtitle {
    color: #000;
    font-size: 16px;
    height: 14px;
    line-height: 14px;
    margin: 0 0 12px;
}

.main {
    width: 100%;
    background-color: #fff;
    padding: 15px;
    border: 1px solid transparent;
    margin-top: 20px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 14px -1px rgba(0,0,0,0.54); 
    box-shadow: 0px 0px 14px -1px rgba(0,0,0,0.54);
}

.imagen {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
}

.form {
    width: 100%;
    height: 100px;
    border: 1px solid #b474b6;
    padding: 10px;
    margin: auto;
    margin-bottom: 30px;
    background-color: #e51170;
}

@media only screen and (min-width: 1300px) {
    .form {
        width: 50%;
    }
}

.form .form-main {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
}

.form .form-main .form-row {
    display: flex;
    justify-content: space-around;
}

.form .form-main .descripcion {
    color: white;
}

.form .form-main .descripcion .text-descripcion {
    width: 50%;
    text-align: center;
}

.form .form-main .form-row .form-group {
    width: 140px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.form .form-main .form-row .form-group label {
    justify-self: start;
    align-self: center;
}

.form .form-main .form-row .form-group .label-form {
    color: white;
}

.form .form-main .form-row .form-group input {
    padding: 0 5px;
    font-size: 14px;
    line-height: 22px;
    height: 24px;
    margin: 0;
    border: 1px solid #cbd5dd;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    box-shadow: none;
    width: 60px;
    text-align: center;
    background-color: white;
}

.form .form-main .form-row .form-group .text-form {
    display: inline-block;
    text-align: center;
    background: #c1c1c1;
    height: 1.5em;
    line-height: 1.5em;
    width: 60px;
    box-sizing: border-box;
}