/* Mobile-first styles (default) */
body {
    background-color: var(--charcoal-grey);
    font-family: var(--font-family);
    font-weight: var(--font-weight-400);
    font-size: 1rem;
    line-height: 150%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

main {
    display: flex;
    flex-direction: row-reverse;
    width: 58rem;
    height: 40rem;
    background-color: var(--white);
    padding: 24px;
    border-radius: 16px;
    gap: 4rem;
}

.form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding: 2rem;
}

.image {
    width: 50%;  /* Take up half the space */
    height: 100%;
    display: flex;
    justify-content: flex-end; /* Align content to the right */
}

.image picture {
    width: 100%;
    height: 100%;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;

}

.list ul
{
list-style-type: none;
padding: 0;
margin: 0;
}

.list li
{
background-image: url(./assets/images/icon-list.svg);
background-repeat: no-repeat;
background-position: left;
padding-left: 2.5em;
margin-bottom: 1rem;
}


.input-label{
    font-size: 12px;
    font-weight: 700;
    color: var(--charcoal-grey);
    margin-bottom: 0.5rem;
}

.input-wrapper{
    width: 100%;
}

#before-submit_form{
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input{
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid lightgray;
    color: grey;
}

.button{
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    color: var(--white);
    border: 1px solid var(--charcoal-grey);
    background-color: var(--charcoal-grey);
}

.button:hover{
    background-image: linear-gradient(to bottom left,#FF6A3A, #FF527B);
    border: none;
    box-shadow: 0px 10px 20px hsl(14.62, 100%, 61.37%, 0.4);
}


.modal-content {
    border-radius: 2rem;
    padding: 2rem;
}

.modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    background-color: var(--charcoal-grey);
    color: var(--white);
    border: none;
    font-size: 12px;
}

.modal-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/*------------------------------------*\
    $SMALL COMPUTER SCREENS
\*------------------------------------*/
 @media all and (max-width: 1034px) {

}

/*------------------------------------*\
    $IPAD AND TABLET
\*------------------------------------*/

@media only screen and (max-width: 767px) {

}



/*------------------------------------*\
    $IHPONE 4S
\*------------------------------------*/

@media only screen and (max-width : 375px) {
body{
    background-color: var(--white);
}


    main {
        flex-direction: column;
        width: 100%;
        height: 100%;
        padding: 0;
        border-radius: 0;
    }

    .image {
        width: 100%;
        height: 300px;  /* Set a specific height for mobile */
        margin: 0;  /* Remove any margins */
    }

    .image img {
        border-radius: 0;  /* Remove border radius on mobile */
    }

    .form {
        padding: 1.5rem;  /* Add padding to the form instead */
    }

    .attribution{
        display: none;
    }
}