*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    min-height: 100vh;
    background-image:linear-gradient(#97dde7,#578fca,#134d80);
}
.container{
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    line-height: 1.6;
    color: #333;
    align-items: center;
}
body h2{
    font-family: c;
    font-size: 40px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    align-items: center;
    padding: 30px;
    border-radius: 5px ;
    color: #ffffff;
}
body p{
    font-family: f;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    color: #ffffff;
}
.form-content{
    background: #ffffff;
    padding: 30px;
    width: 350px;
    border-radius: 8px;
    box-shadow: 0 10px 25px gray;
}
.form-content:hover{
    box-shadow: 5px 10px 25px black;
}
.form-group{
   margin-bottom: 15px;
}
label{
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color : black;
}
input, textarea{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

input:focus, textarea:focus{
    outline:none;
    border-color: #007bff;
}

textarea{
    resize: none;
    height: 80px;
}

button{
    color: white;
    background-color: #007bff;
    margin: 3px;
    padding: 8px 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif ;

}
button:hover{
    background: #7f8c8d;
    transform: translateY(-2px);
}
fieldset {
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    background: #fafbfc;
}
legend {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    padding: 0 15px;
    background: white;
    border-radius: 5px;
}
.btn{
    display: flex;
    justify-content: center;

}
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    fieldset {
        padding: 20px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

