/*
Theme Name: Realise
Theme URI: https://realise-coaching.fr
Author: Pascal Krieg
Author URI: https://krieg.fr
Description: cool theme Requires at least: 5.9
Tested up to: 5.9
Requires PHP: 5.6
Version: 1.1
License: none
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Realise
*/

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }
    body {
      font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #175a48;
      background-image: url('votre-image-de-fond.jpg');
      /* Remplacez par votre image */
      background-size: cover;
      background-position: center;
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      position: relative;
      z-index: 1;
    }

    .background-img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      position: absolute;
      z-index: 0;
    }

    .content {
      padding: 40px;
      width: 100%;
      max-width: 1280px;
      margin: auto;
      background-color: rgba(0, 0, 0, 0.5);
      /* Légère transparence pour le texte */
      border-radius: 10px;
      position: relative;
      z-index: 1;
    }

    h1,
    h2,h3 {
      color: #175a48;
      /* Couleur dorée pour mettre en valeur les titres 
      text-transform: uppercase;*/
      font-weight: bold;
    }

    h1 {
      text-align: center;
      margin: 0;
      font-size: 3rem;
    }
    
    h2 { 
      margin-top: 60px; 
    }
    h3 {
      margin-top: 50px;
      color: #F59680;
    }
    
    .subtitle {
      text-align: center;
      display: block;
      width: 100%;
    }

    p {
      font-size: 1.1em;
      line-height: 1.6;
    }

    ul {
      list-style-type: none;
      padding-left: 20px;
    }

    ul li {
      margin-bottom: 10px;
    }

    a {
      color: #80c1fe;
      text-decoration: none;
      font-weight: bold;
    }

    a:hover {
      text-decoration: underline;
    }

    .contact {
      display: block;
      width: 100%;
      margin-top: 60px;
      font-size: 1.2em;
      text-align: center;
    }
    .logo-img {
      width: 80%;
      object-fit: cover;
      margin: 20px auto;
      border-radius: 20px;
      display: block;
    }
    .orange {
      display: block;
      text-align: center;
      font-size: 1.8rem;
      color: #F16949;
      font-weight: bold;
      text-shadow: 2px 3px 3px white;
      margin-bottom: 50px;
    }
    .centered {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-direction: column;
      margin: 0 auto;

    }
    input, textarea {
      width: 50%;
      margin-bottom: 20px;
    }

    input {
      height: 40px;
      width: 100%;
      max-width: 300px;
    }

    textarea {
      height: 200px;
    }

    .green {
      color: green;
    }
    .red {
      color: red;
    }
    .message {
      text-align: center;
    }

    form {
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .login-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .btn {
      margin-top: 25px;
      font-size: 1rem;
      width: 100%;
      max-width: 150px;
      padding: 10px 30px;
      background: linear-gradient(
      0deg,
      rgba(62, 147, 125, 1) 0%,
      rgba(23, 90, 72, 1) 100%);
      color: white;
      border-radius: 7px;
      border: 2px solid transparent;

    }
    .btn:hover {
      background: white;
      color: rgba(23, 90, 72, 1);;
      border: 2px solid rgba(23, 90, 72, 1);
    }

    @media screen and (min-width: 800px) {

      .logo-img {
      width: 35%;
      object-fit: cover;
      margin: 20px auto;
      border-radius: 20px;
      display: block;
    }

    }