/*
-----------------
PAGE LOGIN
-----------------
*/
.login {
    --color-primary: #009579;
    --color-primary-dark: #007f67;
    --color-secondary: #252c6a;
    --color-error: #cc3333;
    --color-success: #4bb544;
    --border-radius: 4px;

    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: url(../images/imageLogin.jpg);
    background-size: cover;
}

.container {
    width: 400px;
    max-width: 400px;
    margin: 1rem;
    padding: 2rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    background:  linear-gradient(#5e5e5e, #000000);
}

.container,
.form__input,
.form__button {
    font: 500 1rem 'Quicksand', sans-serif;
}

.form--hidden {
    display: none;
}

.form > *:first-child {
    margin-top: 0;
}

.form > *:last-child {
    margin-bottom: 0;
}

.form__title {
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

.form__message {
    text-align: center;
    margin-bottom: 1rem;
}

.form__message--success {
    color: var(--color-success);
}

.form__message--error {
    color: var(--color-error);
}

.form__input-group {
    margin-bottom: 1rem;
}

.form__input {
    display: block;
    width: 100%;
    padding: 0.75rem;
    box-sizing: border-box;
    border-radius: var(--border-radius);
    border: 1px solid #dddddd;
    outline: none;
    background: #eeeeee;
    transition: background 0.2s, border-color 0.2s;
}

.form__input:focus {
    border-color: var(--color-primary);
    background: #ffffff;
}

.form__input--error {
    color: var(--color-error);
    border-color: var(--color-error);
}

.form__input-error-message {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-error);
}

.form__button {
    width: 100%;
    padding: 1rem 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffffff;
    border: none;
    border-radius: var(--border-radius);
    outline: none;
    cursor: pointer;
    background: var(--color-primary);
}

.form__button:hover {
    background: var(--color-primary-dark);
}

.form__button:active {
    transform: scale(0.98);
}

.form__text {
    text-align: center;
}

.form__link {
    color: var(--color-secondary);
    text-decoration: none;
    cursor: pointer;
}

.form__link:hover {
    text-decoration: underline;
}


/*
-----------------
PAGE Serie
-----------------
*/
/*** body ***/
   .serie
   {
       font-family: 'Trebuchet MS', 'sans-serif';
       background-image: linear-gradient(#5e5e5e, #000000);
       min-height: 100vh;
       display: flex;
       flex-direction: column;
   }
   
   h2
   {
       font-size: 300%;
       color: white;
       margin-left: 1em;
   }

   table
   {
       width: 90%;
       border: solid;
       margin-left: auto;
       margin-right: auto;
       margin-top: 3em;
   }

   thead
   {
       background-color: #B8AFAF;
   }

   tbody
   {
       background-image: linear-gradient(#757575, #404040);
       color: #EEEEEE;
   }
   
   td a
   {
       color: #ffffff;
   }
   
   td a:visited
   {
       color: #e0e0e0;
   }

   /*Bouton*/
   .button {
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
    cursor: pointer;

    background-color: #11ffee00; 
    color: #e3e3e3; 
    font-weight: bold;
    border: 3px solid #e3e3e3;
    margin-right: 1%;
    margin-top : 3em;
  }
  
  .button:hover {
    background-color: #e3e3e3;
    color: #242424;
  }

  .button1{
    margin-left: 5%;
  }
  
  .button5{
    margin-left: 5%;
  }

  .button4{
    margin-left: 55%;
  }


/*
-----------------
PAGE Genre
-----------------
*/
.button4Genre{
    margin-left: 63%;
  }