.first {
    width: 100%;
    top: 68px;
    height: 100vh;
    background-image: url('../images/33.JPEG');
    background-size: cover;
    background-position: center;
    position: relative;
}

.top-text {
    position: absolute;
    top: 10%;
    right: 5%;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.top-text h2 {
    font-size: 65px;
    margin: 0;
    font-weight: bold;
    color: #0b2131df;
}

.top-text p {
    font-size: 40px;
    margin: 5px 0 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    color: #6b6262;
}

.content-box {
    position: absolute;
    top: 53%;
    right: 7%;
    transform: translateY(-50%);
    padding: 30px;
    border-radius: 12px;
    width: 500px;
    height: auto;
    text-align: right;
    border: 1px solid #fff;
    background-color: #fff;
}

.input-label {
    font-size: 18px;
    font-weight: bold;
    color: #0d273adf;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.input-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
}

.input-field {
    width: 100%;
    padding: 12px;
    font-size: 20px;
    border: 1px solid #407995;
    border-radius: 5px;
    color: #407995;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
}

.input-field:focus {
    border-color: #407995;
    box-shadow: 0 0 5px rgba(0, 120, 215, 0.5);
}

.submit-button {
    padding: 12px 25px;
    background-color: #0b2131df;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: not-allowed;
    transition: background-color 0.3s ease;
    margin: 0 auto 10px;
}

.submit-button:enabled {
    cursor: pointer;
    background-color: #0b2131df;
}

.error-message {
    color: red;
    font-size: 14px;
    margin: 0;
    display: none;
}

.help-link {
    text-decoration: none;
    color: #407995;
    font-size: 18px;
    transition: color 0.3s ease;
    display: block;
    text-align: center;
}

.help-link:hover {
    color: #005bb5;
}

.help-link i {
    transform: rotateY(180deg);
    margin-top: 8px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .top-text {
        text-align: center;
        right: 0;
        left: 0;
    }

    .top-text h2 {
        font-size: 55px;
    }

    .top-text p {
        font-size: 35px;
    }

    .content-box {
        width: 90%;
        padding: 25px;
        top: 50%;
        right: 5%;
    }

    .input-label {
        font-size: 18px;
        text-align: center;
    }

    .input-container {
        text-align: center;
    }

    .input-field {
        font-size: 20px;
        padding: 12px;
        text-align: center;
    }

    .submit-button {
        font-size: 20px;
        padding: 12px 25px;
        margin: 0 auto;
        display: block;
    }

    .help-link {
        font-size: 18px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .top-text {
        text-align: center;
        right: 0;
        left: 0;
    }

    .top-text h2 {
        font-size: 35px;
    }

    .top-text p {
        font-size: 24px;
    }

    .content-box {
        width: 90%;
        padding: 15px;
        top: 40%;
        right: 5%;
    }

    .input-label {
        font-size: 14px;
        text-align: center;
    }

    .input-container {
        text-align: center;
    }

    .input-field {
        font-size: 16px;
        padding: 8px;
        text-align: center;
    }

    .submit-button {
        font-size: 16px;
        padding: 8px 16px;
        margin: 0 auto;
        display: block;
    }

    .help-link {
        font-size: 14px;
        text-align: center;
    }
}
