body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
margin: 0;
padding: 0;
box-sizing: border-box;
}
  


 /* header start */
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #fff;
border-bottom: 1px solid #ddd;
}
.header a > img{
width: 60px;
}
.login-btn {
background-color: #1a73e8;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-weight: 700;
cursor: pointer;
font-size: 1rem;
}
.content {
display: flex;
text-align: center;
justify-content: center;
gap: 6rem;
align-items: center;
border-bottom: 1px solid #ddd;
margin-bottom: 2rem;
padding: 20px;
}
.content h1 {
font-weight: 700;
font-size: 1.8rem;
color: #333;

}
/* header end */
  
 

 /* form  start */
.form-1 {
    max-width: 1000px;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.form-1:hover{
    box-shadow: 0px 0px 7px black;
    border-radius: 8px;
}
.form-label {
    font-weight: 600;
}
#submit-1{
    background-color: #07ABBE;
    border-style: none;
    color: white;
    font-weight: 600;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    width: 100% !important;
}
.cancel {
    position: absolute;
    top: 18px;
    right: 0px;
    cursor: pointer;
    border: 1px solid white;
    width: 10%;
    background-color: white;
    color: gray;
    font-size: 20px;
}
textarea {
    resize: none !important;
    height: 100px;
}
.about-property {
    height: 180px !important;
    overflow-y: auto;
}
.gender-box {
    display:flex; 
    justify-content:left; 
}
.gen {
    margin-top: 0 !important;
}
 /* form  end */
  


/* footer start */
footer {
    background-color:#f8f8f8;
    color: black;
    padding: 20px 20px;
    width: 100%;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}
.footer-section {
    flex: 1 1 200px;
    margin: 15px;
}
.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin: 8px 0;
    font-size: 14px;
}
.footer-section ul li a {
    text-decoration: none;
    color: gray !important;
}
.footer-section ul li a span {
    font-weight: 600;
}
.form-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-section input {
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    padding: 6px;
}
.footer-section button {
    padding: 4px;
    outline: none;
    border: none;
    background-color: #f39c12;
    color: white;
    font-weight: 600;
    border-radius: 18px;
}
.main-link {
    color: black !important;
}
.copy-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}
.copy-right p {
    font-weight: 600;
    color: gray;
    margin-bottom: 0;
}
.sub-copy {
    display: flex;
    gap: 20px;
}
.sub-copy a {
    text-decoration: none;
    color: gray;
    font-size: 14px;
}
/* footer end */



@media screen and (min-width:320px) and (max-width:768px)
{

    .form-1{
        justify-content: center;
        align-items: center;
        width: 80%;
    }
    .gender-box {
        display:flex !important; 
        justify-content:left !important; 
        margin-top: 25px !important;
    }
    .gen {
        margin-top: 0 !important;
        margin-bottom: .5rem !important;
    }
    .login-btn {
        font-size: 14px;
    }
    .content h1 {
        font-size: 16px;
    }
    .copy-right {
        flex-direction: column;
    }
    .sub-copy {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        gap: 30px;
    }
  
}