body{
    background-color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.message{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titreErreur{
    font-size: 50pt;
    color: white;
    margin-top: 0%;
    margin-bottom: 0%;
}
.messageErreur{
    color: white;
    margin-left: 25pt;
    margin-right: 25pt;
}
.video{
    width: 50%;
    display: flex;
    justify-content: center;
}

form{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    background-color: #3b3c3d;
    height: 200;
    width: fit-content;
    padding: 20px;
    border: 3pt solid #E93578;
    border-radius: 10px;

}

input, select {
    margin: 0;
    margin-top: 5px;
}

.command {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 10px;
    background-color: #E93578;
    border: solid 2pt #f4EB49;
    font-weight: bold;
    color: #f4EB49;
    border-radius: 10px;
}

.command:hover{
    transition-duration: 0.3s;
    border: 2px solid #f4EB49;
    background-color: rgb(228, 100, 228);
    transform: translateX(-5px);
    transform: translateY(5px);
    box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px, rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px, rgba(240, 46, 170, 0.05) 25px 25px;
}

h3{
    color: #f4EB49;
    margin: 0;
    margin-top: 30px;
}