@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom right, rgba(242, 56, 65, 0.5137254902), rgba(43, 116, 226, 0.4901960784));
  padding: 0 10px;
}
body h1 {
  font-size: 32px;
  width: 100%;
  color: #ff3131;
  text-align: center;
}
body h2 {
  font-size: 28px;
}
body h3 {
  font-size: 24px;
}
body h4 {
  font-size: 20;
}
body p {
  font-size: 18px;
  text-align: justify;
}
body li {
  font-size: 18px;
}
body a {
  font-size: 18px;
}

@media (max-width: 400px) {
  body {
    padding: 0 2px;
  }
}
/* VARIABLES */
header .presentationContent {
  position: relative;
  left: 10%;
  max-height: 40px;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 0;
  width: 170px;
}
header .presentationContent .logoAnimated {
  width: 15vw;
  max-width: 166px;
  top: -10px;
  position: relative;
}

@media (max-width: 800px) {
  header .presentationContent .logoAnimated {
    width: 20vw;
  }
  header h1 {
    margin-top: 5px;
  }
}
/* VARIABLES */
/* ------------------------------
   MENU (menu.scss)
------------------------------ */
body .menu {
  position: sticky;
  z-index: 100;
  top: 0;
}
body .menu .main-menu {
  position: relative;
  width: 60%;
  height: 30px;
  background: #ff3131;
  border-radius: 0 0 15px 15px;
  margin: 0 auto;
}
body .menu .main-menu > ul {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  padding: 3px 0;
}
body .menu .main-menu > ul > li:hover .sous-menu {
  display: block;
}
body .menu .main-menu > ul > li .logout {
  border: none;
  background: transparent;
  color: #eeeeee;
  font-family: "Times New Roman", Times, serif;
  font-size: 19.2px;
  font-weight: bold;
}
body .menu .main-menu > ul > li .logout:hover {
  color: #000000;
  background: rgba(173, 216, 230, 0.342);
  border-radius: 35% 50%;
  padding: 0 5px 5px 5px;
}
body .menu .main-menu > ul > li a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: #eeeeee;
  padding: 10px 0;
  margin: 5px;
}
body .menu .main-menu > ul > li a:hover {
  color: #000000;
  background: rgba(173, 216, 230, 0.342);
  border-radius: 35% 50%;
  padding: 5px;
}
body .menu .main-menu > ul > li > ul {
  list-style: none;
  margin-top: 4px;
  position: absolute;
  display: none;
  background: #ff3131;
  border-radius: 0 0 8px 8px;
}
body .menu .main-menu > ul > li > ul li {
  margin: 5px 0 5px 0;
}
body .menu {
  /* BURGER ICON */
}
body .menu .burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  margin: 0 auto;
  background: #ff3131;
  width: 100%;
  padding: 10px 45%;
}
body .menu .burger span {
  width: 30px;
  height: 3px;
  background: bisque;
  border-radius: 4px;
  transition: 0.6s ease;
}
body .menu .burger {
  /* BURGER ANIMATION */
}
body .menu .burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
body .menu .burger.open span:nth-child(2) {
  opacity: 0;
}
body .menu .burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  body .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    margin: 0 auto;
    /* BURGER visible */
  }
  body .menu .burger {
    display: flex;
    border-radius: 0 0 25px 25px;
  }
  body .menu .main-menu {
    background: none;
  }
  body .menu .main-menu > ul > li {
    padding-top: 15px;
  }
  body .menu .main-menu > ul > li:nth-of-type(odd) {
    border-bottom: 1px dashed #2b73e2;
  }
  body .menu .main-menu > ul > li:nth-of-type(even) {
    border-bottom: 1px dashed #f23841;
  }
  body .menu .main-menu > ul ul li {
    background: none;
    border-bottom: none;
  }
  body .menu {
    /* MENU caché par défaut */
  }
  body .menu .main-menu {
    width: 100%;
    opacity: 0;
    overflow: hidden;
  }
  body .menu .main-menu > ul {
    background: linear-gradient(to bottom, #f23841, #2b73e2) border-box;
    flex-direction: column;
    align-items: center;
    padding: 0;
    border-radius: 25px;
  }
  body .menu .main-menu > ul > li {
    width: 100%;
    text-align: center;
    border-radius: 25px;
  }
  body .menu .main-menu > ul > li a {
    display: block;
    margin: 0;
    padding: 0;
  }
  body .menu .main-menu > ul > li .sous-menu {
    position: relative;
    background: none;
  }
  body .menu {
    /* MENU affiché quand burger ouvert */
  }
  body .menu .main-menu.open {
    position: absolute;
    top: 40px;
    opacity: 1;
    height: auto;
    animation: fadeMenu 0.6s ease forwards;
  }
  body .menu .main-menu.open .sous-menu {
    display: block;
  }
}
/* ---------- ANIMATION ---------- */
@keyframes fadeMenu {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.imgPresentation {
  width: 100%;
  border-radius: 25px;
  margin-bottom: 10px;
}

.presentation {
  border-radius: 25px;
  border: 10px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(to bottom right, #f23841, #2b73e2) border-box;
  padding: 5px;
  margin-bottom: 10px;
}
.presentation div {
  margin: 10px;
  border-bottom: 5px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(to left, #f23841, #2b73e2) border-box;
}
.presentation div:last-child {
  border-bottom: none;
}
.presentation div h2 {
  margin-bottom: 15px;
  background: linear-gradient(to right, #f23841, #2b73e2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.presentation div h3 {
  margin-bottom: 10px;
  background: linear-gradient(to right, #f23841, #2b73e2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.presentation div p {
  margin-bottom: 10px;
}
.presentation div ul {
  margin: 0 0 10px 20px;
}
.presentation div a {
  text-decoration: none;
}

.cards-container {
  display: flex;
  justify-content: space-evenly;
  margin: 10px;
}
.cards-container .card {
  color: #eeeeee;
  padding: 20px 50px;
  border-radius: 25px;
  border: 4px solid transparent;
  background: linear-gradient(black) padding-box, linear-gradient(to bottom right, rgba(242, 56, 65, 0.5137254902), rgba(43, 116, 226, 0.4901960784)) border-box;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.12);
  margin: 30px 10px 10px 10px;
  text-align: center;
  cursor: pointer;
}
.cards-container .card:hover {
  background: linear-gradient(to bottom right, rgba(43, 116, 226, 0.4901960784), rgba(242, 56, 65, 0.5137254902)) padding-box, linear-gradient(to bottom right, rgba(242, 56, 65, 0.5137254902), rgba(43, 116, 226, 0.4901960784)) border-box;
  box-shadow: 0 0 20px 3px;
}
.cards-container .card p {
  text-align: center;
}

.events-list {
  display: none;
  margin-bottom: 20px;
  border-radius: 25px;
  border: 10px solid transparent;
  background: linear-gradient(to left, white, white) padding-box, linear-gradient(to left, #f23841, #2b73e2) border-box;
  padding: 15px;
}
.events-list .header-event {
  position: relative;
  display: flex;
  align-items: center;
  height: 60px; /* Ajuste selon ton design */
  margin-bottom: 20px;
  /* Formulaire à gauche */
}
.events-list .header-event form {
  margin-left: 0;
  z-index: 2; /* pour qu’il reste au-dessus si overlap */
  border: 1px solid #000000;
  border-radius: 25px;
  padding: 5px;
}
.events-list .header-event form select {
  background: transparent;
  border: none;
  text-align: center;
  cursor: pointer;
}
.events-list .header-event form select option {
  background: rgba(242, 56, 65, 0.45);
}
.events-list .header-event {
  /* Titre centré */
}
.events-list .header-event h2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  text-align: center;
}

.events-lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin: 0 auto;
}

.event-item {
  display: grid;
  position: relative;
  cursor: pointer;
  transition: opacity 0.6s ease, transform 0.6s ease;
  border-radius: 1em;
  overflow: hidden;
  background: linear-gradient(to bottom right, rgba(242, 56, 65, 0.5137254902), rgba(43, 116, 226, 0.4901960784));
  text-align: center;
}
.event-item a {
  text-decoration: none;
  color: #000000;
  padding: 10px;
}
.event-item:hover {
  background: linear-gradient(to bottom right, rgba(43, 116, 226, 0.4901960784), rgba(242, 56, 65, 0.5137254902));
  padding: 10px;
  box-shadow: 0px -5px 20px 5px #eeeeee;
}
.event-item:hover .hover-text {
  opacity: 1;
}
.event-item {
  /* Texte caché */
}
.event-item .hover-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #eeeeee;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 12px 18px;
  border-radius: 40%;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.event-item h2,
.event-item p {
  margin: 15px;
  text-align: center;
}
.event-item img {
  width: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1em;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .cards-container {
    display: flex;
    flex-direction: column;
  }
  .cards-container .card {
    margin: 5px 10px;
  }
  .events-lists {
    display: grid;
    grid-template-columns: 1fr;
  }
  .events-lists h2 {
    font-size: 24px;
  }
  .events-lists p {
    font-size: 14px;
  }
}
/* Responsive : sur petit écran, titre au-dessus du form */
@media (max-width: 610px) {
  .events-list .header-event {
    flex-direction: column;
    height: auto;
    margin: 0 0 10px 0;
  }
  .events-list .header-event h2 {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }
  .events-list .header-event form {
    text-align: center;
    width: 100%;
    margin: 0;
  }
}
/*------------- Form Contact -----------------*/
.contact {
  position: relative;
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  border: 10px solid transparent;
  background: linear-gradient(to left, white, white) padding-box, linear-gradient(to left, #f23841, #2b73e2) border-box;
  border-radius: 25px;
  padding: 10px;
}
.contact .optimus img {
  position: absolute;
  width: 150px;
  top: 130px;
  left: -20px;
}
.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #111;
  position: relative;
  display: inline-block;
}
.contact h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #ff6b6b;
  margin: 10px auto 0;
  border-radius: 2px;
}
.contact .success,
.contact .error {
  padding: 10px;
  border-radius: 10px;
}
.contact .success {
  background: greenyellow;
}
.contact .error {
  background: #ff6b6b;
}
.contact .contact-form select,
.contact .contact-form input,
.contact .contact-form textarea {
  width: 90%;
  padding: 15px 20px;
  margin: 2%;
  font-size: 1rem;
  border: 2px solid #000000;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact .contact-form select:focus,
.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}
.contact .contact-form select {
  width: 200px;
}
.contact .contact-form #category_custom {
  margin: 0 auto;
  width: 89%;
}
.contact .contact-form .row-nom-prenom input {
  width: 42%;
}
.contact .contact-form textarea {
  resize: vertical;
  min-height: 150px;
}
.contact .contact-form .submitForm {
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  background: #eeeeee;
  color: #000000;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.contact .contact-form .submitForm:hover {
  background: #ff6b6b;
  transform: translateY(-2px);
}
.contact .contact-form .cg input {
  padding: 10px;
  width: 15px;
}

@media (max-width: 700px) {
  .contact .optimus img {
    top: 120px;
  }
}
@media (max-width: 560px) {
  .contact .optimus img {
    top: 115px;
  }
  .contact .contact-form .row-nom-prenom input {
    display: flex;
    margin: 10px auto;
    width: 90%;
  }
  .contact .contact-form .row-nom-prenom input:first-child {
    margin-bottom: 20px;
  }
}
@media (max-width: 440px) {
  .contact .optimus img {
    top: 115px;
    left: 25%;
  }
  .contact .contact-form {
    margin-top: 25px;
  }
  .contact .contact-form select {
    width: 90%;
  }
}
.login {
  position: relative;
  max-width: 750px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  border: 10px solid transparent;
  background: linear-gradient(to left, white, white) padding-box, linear-gradient(to left, #f23841, #2b73e2) border-box;
  border-radius: 25px;
  padding: 10px;
}
.login .success,
.login .error {
  padding: 10px;
  border-radius: 10px;
}
.login .success {
  background: greenyellow;
}
.login .error {
  background: #ff6b6b;
}
.login form .row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.login form div label {
  display: block;
}
.login form div input,
.login form div select {
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 15px 20px;
  margin: 5px;
  font-size: 1rem;
  border: 2px solid #000000;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.login form div input:focus,
.login form div select:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
}
.login form div .pays {
  margin-right: 155px;
}
.login form div .model {
  margin-right: 190px;
}
.login form div input[type=file] {
  display: none;
}
.login form div .custom-file {
  background: #3498db;
  color: white;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 10px;
  margin-bottom: 20px;
}
.login form .submit,
.login form .drop-zone {
  margin: 0 50px 0 50px;
}
.login p {
  text-align: center;
  font-size: 14px;
}

.inscription {
  margin: 25px auto;
}
.inscription .cgu label {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  width: 70%;
  margin: 0 auto;
}
.inscription .cgu label input {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  margin: 0;
  padding: 0;
  width: 15px;
}
.inscription .cgu label div {
  margin: 0 auto;
}

.socialReseau {
  max-width: 580px;
  margin: 0 auto;
}
.socialReseau h2 {
  text-align: center;
  margin: 20px 0 20px 0;
}
.socialReseau ul {
  letter-spacing: 2px;
  padding-bottom: 20px;
}
.socialReseau ul li {
  list-style: none;
  margin: 10px 0 10px 0;
}
.socialReseau ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  border-radius: 50px;
  border: 6px solid transparent;
  background: linear-gradient(to bottom right, white, white) padding-box, linear-gradient(to bottom right, rgba(43, 116, 226, 0.4901960784), rgba(242, 56, 65, 0.5137254902)) border-box;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.12);
}
.socialReseau ul li a:hover {
  background: linear-gradient(to bottom right, white, white) padding-box, linear-gradient(to bottom right, rgba(242, 56, 65, 0.5137254902), rgba(43, 116, 226, 0.4901960784)) border-box;
  box-shadow: 0 0 20px 3px #eeeeee;
}
.socialReseau ul li a img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 10px;
}
.socialReseau ul li a p {
  font-size: 1.2rem;
  color: black;
  font-weight: bold;
}

@media (max-width: 600px) {
  .socialReseau ul li {
    margin: 10px;
  }
}
.soutien .title {
  text-align: center;
}
.soutien .title h2 {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 20px;
  background: linear-gradient(to right, #f23841, #2b73e2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.soutien .title h2::after {
  content: "";
  display: block;
  height: 5px;
  margin-top: 0px;
  background: linear-gradient(to right, #f23841, #2b73e2);
}
.soutien section {
  background: #eeeeee;
  border-radius: 25px;
  padding: 0 20px;
  border: 10px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(to left, #f23841, #2b73e2) border-box;
  margin: 10px 0;
}
.soutien section .bloc-red .code-partenaire {
  border-bottom: 5px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(to left, #f23841, #2b73e2) border-box;
}
.soutien section .bloc-red .code-partenaire:last-child {
  border-bottom: none;
}
.soutien section .bloc-red .code-partenaire a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  margin: 5px 0;
  color: #000000;
  text-decoration: none;
}
.soutien section .bloc-red .code-partenaire a:hover {
  box-shadow: 0px -1px 2px 0px #000000;
  border-radius: 25px;
}
.soutien section .bloc-red .code-partenaire a h3 {
  background: linear-gradient(to right, #f23841, #2b73e2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 10px;
}
.soutien section .bloc-red .code-partenaire a div:first-child {
  margin-right: 2rem;
}
.soutien section .bloc-red .code-partenaire a div:first-child p {
  margin-bottom: 15px;
}
.soutien section .bloc-red .code-partenaire a div:first-child strong p {
  margin: 0 10px;
}
.soutien section .bloc-red .code-partenaire a .image {
  max-width: 150px;
  max-height: 150px;
  min-width: 150px;
  min-height: 150px;
}
.soutien section .bloc-red .code-partenaire a .image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #000000;
}
.soutien section .bloc-red .code-partenaire a p {
  margin-left: 10px;
}

.infoclub section .bloc-red .code-partenaire a {
  flex-direction: column;
}
.infoclub section .bloc-red .code-partenaire a:hover {
  border-radius: 0;
  pointer-events: none;
  box-shadow: none;
}
.infoclub section .bloc-red .code-partenaire a .imageanthony {
  min-width: 150px !important;
  min-height: 150px !important;
  max-width: 400px !important;
  max-height: 400px !important;
}
.infoclub section .bloc-red .code-partenaire a .imageanthony img.anthony {
  width: 100% !important;
  height: 100% !important;
  border-radius: 25px !important;
  border: 1px solid #000000 !important;
}
.infoclub section .bloc-red .code-partenaire a .president {
  font-weight: bold;
  margin-bottom: 15px;
}
.infoclub section .bloc-red .code-partenaire a .president p {
  text-align: center;
  margin: 0 !important;
}
.infoclub {
  /* ===============================
     Membres - Club Tesla Suisse Romande
  ================================= */
}
.infoclub .members {
  margin: 10px auto;
  padding: 40px 20px;
}
.infoclub .members .members__header {
  text-align: center;
  margin-bottom: 40px;
}
.infoclub .members .members__header p {
  font-size: 1.2rem;
  color: #333;
}
.infoclub .members {
  /* Grid des cartes */
}
.infoclub .members .members__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  /* Carte d'un membre */
}
.infoclub .members .members__grid .member-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.infoclub .members .members__grid .member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.infoclub .members .members__grid .member-card .member-card__photo {
  max-width: 250px;
  max-height: 250px;
  margin: 0 auto;
}
.infoclub .members .members__grid .member-card {
  /* Photo du membre */
}
.infoclub .members .members__grid .member-card .member-card__photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #000000;
}
.infoclub .members .members__grid .member-card {
  /* Contenu de la carte */
}
.infoclub .members .members__grid .member-card .member-card__content {
  padding: 20px;
  text-align: center;
}
.infoclub .members .members__grid .member-card .member-card__name {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 10px 0 5px;
  color: #111;
}
.infoclub .members .members__grid .member-card .member-card__car {
  font-size: 1rem;
  color: #e82127; /* accent Tesla */
  margin-bottom: 15px;
  text-align: center;
}
.infoclub .members .members__grid .member-card .member-card__info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.infoclub .members .members__grid .member-card .member-card__info li {
  font-size: 0.95rem;
  margin-bottom: 5px;
  color: #333;
}

/* Responsive : sur petit écran, titre au-dessus du form */
@media (max-width: 600px) {
  .soutien section {
    margin: 20px 0;
  }
  .soutien section .bloc-red .code-partenaire a {
    flex-direction: column-reverse;
  }
  .soutien section .bloc-red div:first-child {
    margin-right: 0px !important;
  }
  .infoclub section .bloc-red .code-partenaire a {
    flex-direction: column;
  }
}
.mycompte {
  border-radius: 25px;
  border: 10px solid transparent;
  background: linear-gradient(#eeeeee) padding-box, linear-gradient(to bottom right, #2b73e2, #f23841) border-box;
  padding: 30px;
}
.mycompte .success {
  text-align: center;
  background: greenyellow;
  padding: 10px;
  border-radius: 25px;
}
.mycompte .errors {
  text-align: center;
  background: rgb(255, 130, 47);
  padding: 10px;
  border-radius: 25px;
}
.mycompte form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: stretch;
}
.mycompte form div {
  padding: 10px 0;
  text-align: center;
}
.mycompte form div input,
.mycompte form div select {
  border-radius: 25px;
  border: 5px solid transparent;
  background: linear-gradient(#eeeeee) padding-box, linear-gradient(to bottom right, rgba(242, 56, 65, 0.5137254902), rgba(43, 116, 226, 0.4901960784)) border-box;
  padding: 10px;
  width: 300px;
}
.mycompte form div:last-child input {
  padding: 10px 50px !important;
}
.mycompte form div img {
  width: 100px;
  border-radius: 50%;
}
.mycompte form > :last-child {
  grid-column: 1/-1;
}

@media (max-width: 860px) {
  .mycompte form {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .mycompte form label {
    display: block;
  }
  .mycompte form input {
    padding: 10px 0;
  }
}
.forum a {
  text-decoration: none;
  color: #000000;
}
.forum a p:first-child {
  margin-top: 30px;
}
.forum a p {
  margin: 10px 5%;
}
.forum a p:last-child {
  margin-bottom: 30px;
}
.forum a .imageforum {
  text-align: center;
}
.forum a .imageforum img {
  width: 90%;
  border-radius: 25px;
  border: 1px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(to left, #f23841, #2b73e2) border-box;
}

.footer {
  position: relative;
  width: 100%;
  min-height: 250px;
  overflow: hidden;
  border-radius: 25px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-end;
}
.footer video {
  position: absolute;
  top: 75%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.footer .footerNav {
  background: rgba(255, 255, 255, 0.486);
  padding: 10px;
  border-radius: 10px 0 0 0;
}
.footer .footerNav li {
  list-style: none;
}
.footer .footerNav li a {
  font-size: 1rem;
  text-decoration: none;
  color: #000000;
}
.footer .footerNav li a:hover {
  color: #f23841;
}
.footer .logoTeslab {
  width: 90px;
  height: 90px;
  background: #000000;
  border-radius: 50%;
  border: 1px solid #eeeeee;
  margin: 20px;
}
.footer .logoTeslab img {
  width: 100%;
  height: 100%;
}

@media (max-width: 550px) {
  .footer .footerNav li {
    font-size: 0;
  }
  .footer .footerNav li a {
    font-size: 0.7rem;
  }
  .footer .logoTeslab {
    width: 50px;
    height: 50px;
    margin-right: 30px;
  }
}/*# sourceMappingURL=styles.css.map */