/*Font*/
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Manrope:wght@200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
}

:root{
    --Tomato: hsl(4,100%,67%);
    --Tomato2: hsla(4,100%,67%,50%);
    --DarkSlateGrey: hsl(234, 29%, 20%);
    --CharcoalGrey: hsl(235, 18%, 26%);
    --Grey: hsl(231, 7%, 60%);
    --White: hsl(0, 0%, 100%);
}


html,body{
    font-family: 'Roboto';
    font-size: 16px;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: center;
    height: 100svh;

    background-color: var(--CharcoalGrey);
}

.Card{
    display: flex;
    flex-direction: row;
    background-color: var(--White);
    padding: 32px;
    border-radius: 48px;
    
}

.content{
    color: var(--DarkSlateGrey);
    display: flex;
    flex-direction: column;
    padding: 48px;
    min-width: 510px;
}

.content h1{
    font-size: 78px;
    margin-bottom: 34px;
}

.content p {
    font-size: 22px;
    margin-bottom: 34px;
}

.content ul{
    margin-bottom: 34px;
    padding-left: 24px;
    list-style-image: url('assets/images/icon-list.svg');
}

.content ul li{
    font-size: 22px;
    margin-bottom: 24px;
}

.content form{
    display: flex;
    flex-direction: column;
}

.content form label{
    font-weight: 700;
    color: var(--CharcoalGrey);
    margin-bottom: 1rem;
}



#validation{
    font-size: 1rem;
    margin: 0;
    display: none; 
    font-weight: 700;
    color: var(--Tomato);
}


.EmailFail{
    height: 74px;
    margin-bottom: 32px;
    border-radius: 10px;
    border: 1px solid  #D06A66;
    background-color: #FFE8E6;

    padding-left: 32px;
    font-size: 1.375rem;
    font-family: 'Roboto';
    color: var(--Tomato);
}



.MailInfos{
    display: flex;
    justify-content: space-between;
}



.Email{
    height: 74px;
    margin-bottom: 32px;
    border-radius: 10px;
    border: 1px solid var(--Grey);
    background-color: var(--White);

    padding-left: 32px;
    font-size: 1.375rem;
    font-family: 'Roboto';
    color: var(--DarkSlateGrey);
}

.Email::placeholder{
font-size: 1.375rem;
font-family: 'Roboto';
}

.Email:hover{
    border: 1px solid var(--DarkSlateGrey);
    cursor: pointer;
}

.SubButton{
    cursor: pointer;
    height: 74px;
    background: var(--DarkSlateGrey);
    color: var(--White);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 22px;
    transition: 
        background 1.5s ease,
        box-shadow 0.5s ease,
        transform 0.5s ease;
}

.SubButton:hover{
    background: linear-gradient(to right,#fe5377,#fe6839);
    box-shadow: 5px 15px 20px var(--Tomato2);
    transform: scale(1.01);
}

.ImgContainer{
    display: flex;
    width: 100%;                /* Volle Breite des Containers */
    overflow: hidden;  
}

img{
}

.image{
    width: 100%;                /* Bild passt sich der Breite an */
    height: 100%;               /* Bild passt sich der Höhe des Containers an */
    object-fit: cover;
    border-radius: 50px;
}

/*Notification Card or SmallCard*/

.SmallCard{
    background-color: var(--White);
    border-radius: 38px;
    padding: 64px;
    padding-top: 48px;
    color: var(--DarkSlateGrey);
    max-width: 400px;
    display: none;
}

.SmallCard img{
    margin-bottom: 48px;
}

.SmallCard h1{
    margin-bottom: 24px;
    font-size: 58px;
}

.SmallCard p{
    margin-bottom: 48px;
    font-size: 1rem;
    line-height: 150%;
}

#DismissButton{
width: 100%;
}

@media (max-width: 970px){
    html,body{
        background-color: var(--White);
    }
    .Card{
        flex-direction: column;
    }

    .Card img{
        max-height: 300px;
        object-fit: cover;
        height: auto;
        order: 1;
        
    }

    .Card .content{
        order: 2;
    }

    .image{
        border-radius: 0px 0px 50px 50px;
        width: 100%;
    }

}