body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
}

header {
    height: auto;
    width: 100%;
}

.main {
    background-image: url('firstimg.jpeg');
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    padding: 50px;
}

.content {
    max-width: 600px;
    margin-right: 50px;
}

.content h1 {
    font-size: 50px;
    letter-spacing: 2px;
}

.content span {
    color: orange;
    font-size: 60px;
}
.par{
    color: rgb(17, 17, 17);
    font-size: 18px;
}
.par b{
    color:rgb(238, 231, 238);
    font-size: 25px;
}
.form-details {
    width: 400px;
    /* background: rgba(232, 130, 29, 0.8); */
    padding: 30px;
    border-radius: 8px;
}

.form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid orange;
    color: white;
}

button {
    transition: 0.4s ease;
}

button:hover {
    background-color: white;
    color: orange;
}

footer {
    background-color: rgb(140, 140, 140);
    text-align: center;
    padding: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main {
        flex-direction: column;
        justify-content: center;
        padding: 20px;
        height: auto;
    }

    .content {
        max-width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .content h1 {
        font-size: 35px;
    }

    .content span {
        font-size: 40px;
    }

    .form-details {
        width: 100%;
        padding: 20px;
    }
    .par{
        color: rgb(17, 17, 17);
        font-size: 18px;
    }
    .par b{
        color:rgb(14, 14, 14);
        font-size: 25px;
    }
}

@media (max-width: 576px) {
    .content h1 {
        font-size: 28px;
    }

    .content span {
        font-size: 32px;
    }

    .form-details {
        padding: 15px;
    }

    .form-control {
        font-size: 14px;
    }

    button {
        font-size: 16px;
    }
}
