 

.report-form{
     color: #fff;
     border-radius: 15px;
    background: rgba(5, 5, 5, .7);
    padding: 1rem;

}

.input-box{
    position: relative;
    width: 100%;
    height: 100%;
    margin: 30px 0;
    border-radius: 15px;
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 5px;
     border: 2px solid #fff;
    font-size: 16px;
    padding: 10px;
    color: white;
}

.input-box i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

textarea{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 5px;
     border: 2px solid #fff;
    font-size: 16px;
    padding: 10px;
    color: white;
 }
 
.btn{
    width: 80%;
    height: 40px;
    background: #db3b17c9;
    color: #000;
    border: none;
    outline: none;
    border-radius: 12px;
    box-shadow: 0 0 20px #824a3d50;
    font-size: 15px;
    font-weight: 600;
    transition: 1s;
    text-align: center;
 }

.btn:hover{
     border: 2px solid #db3b17c9;
    color: #fff;
    transform: scale(1.01);
    box-shadow: 0 0 20px #db3b17c9;
}
 
input::placeholder, textarea::placeholder {
    color: white; 
    opacity: 1;  
  }
  

 