@layer reset, variables, components, utilities;

@import "./reset.css" layer(reset);
@import "./variables.css" layer(variables);
@import "./utilities.css" layer(utilities);

@import "../component/Log/style.css" layer(components);
@import "../component/NewMovie/newmovie.css" layer(components);
@import "../component/ProfileForm/profileform.css" layer(components);
@import "../component/ModifProfileForm/modifprofileform.css" layer(components);

body {
    background-color: #1c1c1c;
    color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.container,
.addMenu {
    background: #262626;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    padding: 20px;
    width: 90%;
    max-width: 400px;
    margin: 20px;
    transition: transform 0.2s ease;
}

h1,
h4 {
    text-align: center;
    color: #e076c9;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', sans-serif;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

form input[type="button"] {
    background-color: #e076c9;
    color: #fff;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

form input[type="button"]:hover {
    background-color: #c65cba;
    transform: scale(1.02);
}


.formulaire {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}