/* Reset some default Bootstrap styles */
body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}
nav{
    display:flex;
    justify-content: right;
    background: rgb(0, 0, 0);
    position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
    padding: 1%;
}
nav img{
    width: 50px;
}
nav a{
text-decoration: none;
color: rgb(208, 170, 0);
font-weight: bolder;
font-size: 20px;
padding: 5px;
margin-right: 20px;
}
nav a:hover{
    color: rgb(105, 105, 105);
    text-decoration: none;
}
/* Custom styles for the form */
.form {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    padding-top: 50px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
h1 {
    position: relative;
    display: inline-block;
}

h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #d31b1b;
    transform-origin: left;
    transform: scaleX(0.5);
    transition: transform 0.3s ease-in-out;
}
h1:hover::after {
    transform: scaleX(1);
}
input,
select,textarea {
    width: 100%;
    padding: 8px;
    border: none;
    border-bottom: 1px solid #000000;
    margin-bottom: 16px;
    box-sizing: border-box;
    background-color: transparent;
}
#ash{
    color: red;
}
input:focus,
select:focus,textarea:focus {
    outline: none;
    border-color: #e0aa15;
}

button {
    background-color: #e71e1eda;
    color: #fff;
    border: none;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
justify-content: center;
padding: 5px;
width: 200px;
height: 40px;
}
i{
    font-size: 12px;
}

button:hover {
    background-color: #978b1f;
}
input[type="radio"] {
    margin-right: 5px;
}
/* Optional: Adjust checkbox styles for better alignment */
input[type="checkbox"] {
    margin-top: 4px;
}

/* Media Query for Responsive Design */
@media (max-width: 768px) {
    .form {
        width: 90%;
        margin: 20px auto;
    }
}
@media (max-width:786px) {
    img{
    height: 1500%;
    width: 100%;
}
}
