.containerform {

    width: 100%;
    padding: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgb(60, 60, 60);
    box-sizing: border-box;
}

.containerform>div {
    text-align: center;

}

.containerform>.instruction {
    font-size: 16px;
    line-height: 1;
    padding: 4px;
}

.form {
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.90);
    box-shadow: 0px 0px 10px #4d4d4d;
    padding: 20px;
    border-radius: 20px;
    height: fit-content;
    margin: auto;
    top: 0px;
    margin-top: 10px;
    max-width: 400px;
    position: relative;
}

.inputContainer {
    position: relative;
    height: 70px;
    width: 100%;
    margin-bottom: 10px;
}



.inputContainer>.infoLabel {
    position: absolute;
    background-color: none;
    outline: none;
    border: none;
    width: 100%;
    left: 0px;
    bottom: 0px;
    margin-bottom: 38px;
    padding: 0px;
    font-size: 20px;
    height: 24px;
    color: rgb(100, 100, 100);
}

.inputContainer>.category {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 45%;
    margin-bottom: 38px;
    background-color: none;
    outline: none;
    border: none;
    color: rgb(141, 141, 141);
    font-size: 14px;
    text-align: right;
}

.inputContainer>.infoInput {
    position: absolute;
    background-color: none;
    outline: none;
    border: none;
    color: rgb(80, 80, 80);
    margin-bottom: 4px;
    padding: 0px;
    font-size: 28px;
    height: 34px;
    bottom: 0px;
    left: 0px;
    width: 100%;
}

.underLine1 {
    position: absolute;
    height: 4px;
    width: 100%;
    bottom: 0px;
    content: "";
    background-color: rgba(169, 169, 169, 0.5);
    z-index: 1;

}

.underLine2 {
    position: absolute;
    height: 4px;
    width: 100%;
    bottom: 0px;
    content: "";
    background-color: rgba(0, 200, 123, 0.5);
    z-index: 2;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.inputContainer .infoInput:focus~.underLine2,
.inputContainer .infoInput:valid~.underLine2 {
    transform: scaleX(1.0);
}

.photoContainer {
    position: relative;
    border: 2px solid rgb(160, 160, 160);
    border-radius: 10px;
    font-size: 24px;
    color: rgb(80, 80, 80);
    margin-bottom: 10px;
}

.photoContainer>label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    width: 100%;
    height: 100%;
}

.submit {
    max-width: 500px;
    width: 100%;
    height: 40px;
    font-size: 26px;
    border-radius: 10px;
    border: 2px solid rgb(160, 160, 160);
    color: rgb(60, 60, 60);
    font-weight: 400;
    background-color: transparent;
}

.submitted {

    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    right: 0px;
    top: 0px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    padding: 10px;
    z-index: 3;
    background-color: rgba(255, 255, 255);
    text-align: center;
}

.submitted>* {
    margin: 10px;
}

.submitted>div:nth-child(1) {
    font-size: 40px;
}

.submitted>div:nth-child(2) {
    font-size: 16px;
    line-height: 1.5;
}