/* ==========================
   Ficuspedia Watering Tool
   Version 1.0
========================== */

.fp-tool-wrapper{
    max-width:900px;
    margin:50px auto;
    padding:0 20px;
}

.fp-card{
    background:#ffffff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.fp-tool-header{
    margin-bottom:30px;
}

.fp-tool-header h2{
    margin:0 0 10px;
    font-size:38px;
    color:#1f2f1f;
}

.fp-tool-header p{
    color:#666;
    font-size:17px;
}

.fp-field{
    margin-bottom:20px;
}

.fp-field label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.fp-field select{
    width:100%;
    height:50px;
    padding:0 15px;
    border:1px solid #dcdcdc;
    border-radius:10px;
    font-size:16px;
    transition:.3s;
    background:#fff;
}

.fp-field select:focus{
    outline:none;
    border-color:#7ac70c;
    box-shadow:0 0 0 3px rgba(122,199,12,.15);
}

#fp-calculate{
    width:100%;
    height:54px;
    border:none;
    border-radius:10px;
    background:#7ac70c;
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

#fp-calculate:hover{
    background:#5fa108;
}

#fp-result{
    margin-top:30px;
    padding:25px;
    border-radius:12px;
    background:#f5ffe9;
    border-left:5px solid #7ac70c;
}

#fp-result h3{
    margin-top:0;
}

#fp-result p{
    margin:10px 0;
    font-size:16px;
}

@media(max-width:768px){

    .fp-card{
        padding:20px;
    }

    .fp-tool-header h2{
        font-size:28px;
    }

}