*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(#00c6ff, #0078ff);
    padding: 15px;
}
section{
    position: relative;
    padding: 20px;
    width: 1000px;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
section h2{
    color: rgba(0, 0, 0, 0.7);
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
}
.container{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.container .textField{
    position: relative;
    width: 100%;
    height: 100%;
}
.textField .textFieldDisplay{
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.textFieldDisplay p{
    color: #858585;
    font-size: 1.2em;
}
.textFieldDisplay p span{
    color: rgba(0, 0, 0, 0.7);
    font-weight: 600;
    margin-left: 5px;
}
.textFieldDisplay .reset{
    position: absolute;
    right: 0;
    padding: 10px 12px;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(#00c6ff, #0078ff);
    outline: none;
    border: none;
    border-radius: 10px;
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
    transition: .3s ease;
    cursor: pointer;
}
.textFieldDisplay .reset:hover{
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.textField .textFieldArea{
    position: relative;
}
.textFieldArea textarea{
    position: relative;
    width: 100%;
    height: 200px;
    resize: none;
    color: rgba(0, 0, 0, 0.7);
    background: transparent;
    border: 2px solid #858585;
    border-radius: 5px;
    outline: none;
    padding: 12px 15px;
    font-size: 1em;
    transition: .5s ease;
}
.textFieldArea textarea:valid,
.textFieldArea textarea:focus{
    border: 2px solid #00c6ff;
}
.textFieldArea textarea::-webkit-scrollbar{
    display: none;
}
.textFieldArea span{
    position: absolute;
    left: 0;
    padding: 5px 15px;
    pointer-events: none;
    font-size: 1em;
    color: #858585;
    transition: .3s ease;
}
.textFieldArea textarea:valid ~ span,
.textFieldArea textarea:focus ~ span{
    color: rgba(0, 0, 0, 0.7);
    transform: translateX(10px) translateY(-10px);
    font-size: 0.9em;
    padding: 0 10px;
    background: #00c6ff;
    border-left: 1px solid #00c6ff;
    border-right: 1px solid #00c6ff;
    letter-spacing: 0.1em;
    border-radius: 5px;
}
.wordCount{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}
.wordCount h4{
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    cursor: pointer;
}
.wordCount p{
    color: #858585;
    font-size: 1.2em;
}
.wordCount p span{
    color: rgba(0, 0, 0, 0.7);
    font-weight: 600;
    margin-left: 5px;
}