/* body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #fefbfb, #2f00ff);
    margin: 0;
    padding: 0;
} */

.contact .text{
    width: 50%;
    
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
    margin: 0;
}
.contact .text .topic{
text-align: center;
}
section .contact{
    width: 100%;
    height: 160vh;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}
.contact .content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border: 1px solid white;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container {
    width: 50%;
    height: fit-content;
    
    /* margin: 50px auto; */
    /* background: linear-gradient(to right, #1e3c72, #2a5298); */
    /* border-radius: 8px; */
  
    padding: 20px;
    color: #090909;
    
}
.container .forr {
max-width: 100%;
position: relative;
/* left: 2%; */

}

h2 {
    text-align: center;
    margin-bottom: 30px;
    text-decoration: underline;
}

.form-group {
    margin-bottom: 20px;
    

}

label {
    /* display: block; */
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="tel"],
textarea {
    width: calc(100% - 20px); /* Adjusting for padding */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    height: 100px;
}
#but{
    display: flex;
    gap: 20px;
   
   
}
#but .sub{
    background-color: rgb(8, 2, 125);
    color: #f2efef;
   
    width: 90px;
    
}
#but .hom{
    background-color: rgb(8, 2, 125);
    color: #fff;
    width: 90px;
    
}
input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Responsive Styles */

@media only screen and (max-width: 600px) {
    .container {
        max-width: 90%;
        margin: 20px auto;
        padding: 10px;
    }

    input[type="text"],
    input[type="tel"],
    textarea {
        width: 100%;
    }
}

@media only screen and (max-width: 400px) {
    input[type="submit"] {
        font-size: 14px;
    }


}
