.contant {
    width: 55vw;
    height: 48vh;
    overflow-y: scroll;
    padding-left: 7%;
    padding-right: 7%;
    background-color: rgba(255, 255, 255, 0.326);
    margin-left: 10%;
}

label {
    padding-left: 10%;
    color: navy;
    font-weight: bold;
}

.box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: space-between;
    align-items: center;
}

input {
    width: 50vh;
    margin: 1%;
    border-radius: 7px;
    border: none;
    border-bottom: solid 1px navy;
    background-color: rgba(240, 248, 255, 0);
}

select {
    width: 50.58vh;
    margin: 1%;
    border-radius: 7px;
    border: none;
    border-bottom: solid 1px navy;
    background-color: rgba(240, 248, 255, 0);
}

span {
    color: #9e2420;
}

.encabezado img {
    width: 100%;
    border-radius: 7px;
    margin-bottom: 2%;
}

.contant {
    width: 55vw;
    height: 48vh;
    overflow-y: scroll;
    padding-left: 7%;
    padding-right: 7%;
    background-color: rgba(255, 255, 255, 0.326);
    margin-left: 10%;
}

label {
    padding-left: 10%;
    color: navy;
    font-weight: bold;
}

.box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: space-between;
    align-items: center;
}

input {
    width: 50vh;
    margin: 1%;
    border-radius: 7px;
    border: none;
    border-bottom: solid 1px navy;
    background-color: rgba(240, 248, 255, 0);
}

select {
    width: 50.58vh;
    margin: 1%;
    border-radius: 7px;
    border: none;
    border-bottom: solid 1px navy;
    background-color: rgba(240, 248, 255, 0);
}

span {
    color: #9e2420;
}

.encabezado img {
    width: 100%;
    border-radius: 7px;
    margin-bottom: 2%;
}

.button-container {
    display: flex;
    gap: 10px;
}

.button {
    border-radius: 3px;
    position: relative;
    width: 150px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #2c4da5;
    background-color: #0b1541;
    overflow: hidden;
    text-decoration: none;
}

.button,
.button__icon,
.button__text {
    transition: all 0.3s;
}

.button .button__text {
    transform: translateX(22px);
    color: #fff;
    font-weight: 600;
}

.button .button__icon {
    position: absolute;
    transform: translateX(109px);
    height: 100%;
    width: 39px;
    background-color: #0f3670;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button .svg {
    width: 20px;
    fill: #fff;
}

.button:hover {
    background: #105b7e;
}

.button:hover .button__text {
    color: transparent;
}

.button:hover .button__icon {
    width: 148px;
    transform: translateX(0);
}

.button:active .button__icon {
    background-color: #146c54;
}

.button:active {
    border: 1px solid #146c54;
}