div {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 700px;
}

input {
    width: 20%;
    height: 40px;
    font-size: 20px;
    outline: none !important;
}

span {
    font-size: 20px;
    background-color: gray;
    padding: 12.5px;
    color: white;
}


.wrongFocusedInput{
    border: 3px solid pink;
}
.wrongFocusedInput:focus{
    border: 3px solid rgb(221, 78, 102);
}
  .focusedInput{
    border: 3px solid gray;
}

.focusedInput:focus{
    border: 3px solid rgb(59, 59, 238);
}