/* customize recovery page */

.contentForm#recover{
    display: grid;
    place-items: center;
    height: 100%;
    grid-row: 1/-1;
    grid-column: 1/-1;
}
.contentForm#recover form{
    width: 300px;
    height: 500px;
    background-color: #f6f6f6;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    display: grid;
    place-items: start center;
}
.contentForm#recover form #header{
    height: 100px;
    width: auto;
    margin-top: 25px;
    grid-column: 1/-1;
    grid-row: 1/2;
}

/* customize input sections */

.contentForm#recover form label{
    display: grid;
    place-items: center;
    grid-template-columns: 30px 220px;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    width: 260px;
    margin: 5px 20px;
}
.contentForm#recover form label img{
    width: 30px;
    height: 30px;
    grid-column: 1/2;
    grid-row: 2/-1;
    place-self: start center;
}
.contentForm#recover form input{
    background-color: transparent;
    border: none;
    outline: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-color: #ccc;
    width: 220px;
    grid-column: 2/-1;
    grid-row: 2/-1;
    place-self: end;
    margin: 0 -5px;
    font-family: helvetica;
}
.contentForm#recover form input::placeholder{
    font-size: 14px;
    transition: 1s;
}
.contentForm#recover form .line{
    width: 220px;
    height: 2px;
    background-color: transparent;
    grid-column: 2/-1;
    grid-row: 2/-1;
    place-self: end;
    margin: 0 -5px;
    transition: 0.4s;
}
.contentForm#recover form .labe{
    font-size: 0px;
    grid-column: 1/-1;
    grid-row: 1/2;
    padding-bottom: 0px;
    color: #666;
    font-weight: 400;
    place-self: start;
    transition: 0.6s;
}

/* customize submit button */

.contentForm#recover form button{
    background-color: #ccc;
    width: 100px;
    height: 40px;
    color: #f6f6f6;
    border: none;
    outline: none;
    border-radius: 20px;
    transition: 1s;
}
.contentForm#recover form .activated{
    background-color: #ed1b24;
    opacity: 1;
    cursor: pointer;
    transition: 1s;
}

/* input focus customiztion */

.contentForm#recover form input:focus{
    border-color: transparent;
}

.contentForm#recover form input:focus::placeholder{
    font-size: 0px;
    transition: 1s;
}

.contentForm#recover form input:focus + .line{
    background-color: #ed1b24;
    transition: 1s;
}
.contentForm#recover form input:focus ~ .labe{
    font-size: 14px;
    padding-bottom: 8px;
    transition: 1s;
}