
body{
    font-family: Arial, sans-serif;
    background: #7997c0;
    margin: 0;
    padding: 20px;
}

.form-container{
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-title{
    text-align: center;
    color: #056923;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: bold;
}

.form-group{
    margin-bottom: 18px;
}

.form-group-1{
    height: 30px;
    margin-bottom: 25px;
    text-align: center;
}

.form-group label{
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus{
    border-color: #056923;
    box-shadow: 0 0 5px rgba(5,105,35,0.3);
}


.submit-btn{
    width: 45%;
    background: linear-gradient(135deg,#0b8f36,#056923);
    color: white;
    border: none;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    float: left;
    padding: 10px;
    text-align: center;
    margin-left: 20px;
    transition: 0.3s ease; /* add this */
    text-decoration: none;
}

.submit-btn:hover{
    background: linear-gradient(135deg,#ff3b30,#d90429);
    transform: translateY(-2px);
}