/* General Styles */
.RegisterForm {
    gap: 20px;
    width: 100%;
}

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

.ads img {
    width: 100%; /* Ensure the image takes full width of its container */
    border: 2px solid #0F112A;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.submitBtn {
    background-color: #8BD005;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    border: none;
    padding: 10px 20px;
}

.submitBtn:hover {
    background-color: #0F112A;
    color: white;
}

.ads img:hover {
    transform: scale(1.05);
}


/* Responsive Adjustments */
@media (min-width: 992px) { /* Large screens and above */
    .ads-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ads img {
        width: 100%;
        height: 60%; /* Full width of the ads-container */
    }
}

@media (max-width: 991.98px) { /* Medium and smaller screens */
    .ads-container {
        display: block;
        margin-left: 7%; /* Stack image and button in block layout */
    }

    .ads img {
        width: 100%; 
        height: 70%;/* Take full width of mobile screen */
    }
}

.red{
    color: red;
}
