/* Switzer Font */
@import url('/public/css/switzer.css');

/* Mona Sans Font */
@font-face {
    font-family: 'Mona Sans';
    src:
      url('../fonts/Mona-Sans.woff2') format('woff2 supports variations'),
      url('../fonts/Mona-Sans.woff2') format('woff2-variations');
    font-weight: 200 900;
    font-stretch: 75% 125%;
}

@layer theme {
    :root {
        --font-sans: 'Mona Sans', sans-serif;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Switzer', sans-serif;
}

h1 {
    font-size: 5rem;
    font-weight: 700;
}




.text-3xl {
    font-size: 3.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

/*
.illustration-container {
    display: flex;
    justify-content: center;
    align-items: center;
}*/
.illustration-container {
    background-image: url('/public/images/login-bg.jpg');
}

.form-group {
    border: 1px solid #d3d3d3;
    transition: all 0.3s ease-in-out;
}
.form-group:hover {
    border: 1px solid #3d3d3d;
}



.btn-login {
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 2rem;
    display: inline-block;
    /* dégradé de orange */
    
    transition: all 0.3s ease-in-out;
}
.btn-login:hover {
    transition: all 0.3s ease-in-out;
    transform: scale(1.05);
    box-shadow: 2px 2px 5px rgba(112, 74, 16, 0.5);
}




i[class*=" fi-rr-"]::before {
    line-height: 1.5;
}

.form-input:focus {
    border: none;
}
.form-input:active {
    border: none;
}
.form-group:focus-within {
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 0 3px rgba(0, 0, 0);
    outline: none;
}




/* Custom checkbox uiverse */
/* From Uiverse.io by Galahhad */ 
.checkbox {
  display: none;
}

.slider {
  width: 60px;
  height: 30px;
  background-color: lightgray;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 4px solid transparent;
  transition: .3s;
  box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.25) inset;
  cursor: pointer;
}

.slider::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translateX(-30px);
  border-radius: 20px;
  transition: .3s;
  box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
}

.checkbox:checked ~ .slider::before {
  transform: translateX(30px);
  box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
}

.checkbox:checked ~ .slider {
  background-color: #fec026;
}

.checkbox:active ~ .slider::before {
  transform: translate(0);
}