/* main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    margin: 30px 30px 30px 30px;
    box-shadow: 0px 10px 50px rgba(0,0,0,0.5);
    border-radius: 30px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    width: 500px;
    margin: auto;
    margin-bottom: 30px;
    color: black;
}

.form-prenom-nom {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 20px;
}

.form-colum {
    flex:1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

input, textarea {
    padding: 15px;
    border-radius: 30px;
    border-style: solid;
    margin-top: 15px;
    margin-bottom: 15px;
    box-shadow: 0px 10px 50px rgba(0,0,0,0.5);
}
  
label {
    margin-bottom: 20px;
    font-weight: bold;
    color: red;
}
  
input[type='submit'] {
    width: 200px;
    margin-top: 30px;
    margin-left:100px;
    font-weight: bold;
}

h1 {
    margin-top: 60px;
    margin-bottom: 30px;
}

.image {
    box-shadow: 0px 10px 50px rgba(0,0,0,0.5);
} */