form {
    padding: 40px 10px;
    background-color: #e5ffe5;
    text-align: center;
}

form h1,form p {
    color: #e95464;
    font-weight: 500;
}

form p {
    font-size: 15px;
}

form input[type = "text"],form input[type = "tel"]{
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    border: 2px solid #0dec20;
    padding: 13px 15px;
    width: 200px;
    outline: none;
    border-radius: 24px;
    transition: 0.25s;
    text-align: center;
}

form input[type = "text"]:focus,form input[type = "tel"]:focus{
    width: 280px;
    background-color: #f0f8ff;
}

form input[type = "submit"]{
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    border: 2px solid #f0f8ff;
    padding: 15px 10px;
    width: 200px;
    outline: none;
    color: white;
    border-radius: 25px;
    transition: 0.25s;
    text-align: center;
    cursor: pointer;
}
::placeholder {
    color: #dcdcdc;
    font-size: 19px;
}

#inp_enpCd, #inp_enpName, #inp_pwd{
    font-size: 23px;
}

.bgColor_gray{
    background-color: #dcdcdc !important;
}

