*{
    box-sizing: border-box;
}
html{
    background-color: #EFE6DD;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
}
/**/
.header{
    text-align: right;
    padding: 40px;
}
.header h1{
    font-weight: bold;
    margin: 5px 0;
    margin-right: 350px;
    margin-bottom: 30px;
    font-size: 22px;
}
.header h2{
    font-weight: normal;
    margin: 5px 0;
    margin-right: 400px;
    font-size: 22px;
}
/**/
.trait{
    border: none;
    height: 1px;
    background-color: #000;
    margin: 10px 0;
    margin-top: 10px;
}
.trait-1{
    width: 40%;
    margin-left: auto;
}
.trait-2{
    width: 60%;
    margin-left: auto;
}
/**/
.content{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    padding-left: 50px;
}
/**/
.bloc{
    width: 480px;
    padding: 80px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
}
.bloc a{
    display: inline-block;
    margin-top: 15px;
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}
/**/
.bloc-1{
    background: linear-gradient(90deg, #E91E63, #EFE6DD);
}
.bloc-2{
    background: linear-gradient(90deg, #E91E63, #EFE6DD);
}
/**/
.right-side{
    margin-top: -600px;
    margin-left: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}
.bloc-3 {
    width: 480px;
    padding: 80px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(90deg, #E91E63, #EFE6DD);
}
.right-side p{
    text-align: justify;
    color: #000;
    font-size: 16px;
    letter-spacing: 1.2px;
    width: 45%;
}
/**/
.contact{
    margin-top: 350px;
    margin: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
/**/
form{
    width: 300px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
input[type="email"]{
    padding: 10px;
    border: 1px solid #000;
    border-radius: 100px;
    font-size: 18px;
    width: 100%;
    background: none;
}
input[type="email"]::placeholder{
    color: #000;
    font-style: normal;
}
textarea{
    padding: 10px;
    border: 1px solid #000;
    border-radius: 100px;
    resize: vertical;
    font-size: 18px;
    min-height: 100px;
    background: none;
}
textarea::placeholder{
    color: #000;
    font-style: normal;
}
input[type="submit"]{
    background-color: #E91E63;
    color: #fff;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 100px;
    font-size: 22px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 140px;
    letter-spacing: 1px;
    font-weight: 600;
}
input[type="submit"]:hover{
    opacity: 80%;
}