/**************
    ALL
***************/

html{
  height: 100%;
}

body {
  height: 100%;
  min-height: 100vh;
  margin: 0;
  background-color: #F5F5F5;
  font-family: soleil;
}

button{
  font-family: 'soleil';
  font-size: 1em;
  font-weight: 200;
  width: 150px;
}

.icon{
  height: 30px;
}

.clickable{
  cursor: pointer;
}

/**************
      COVER
***************/
#cover{
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 1;
}
/**************
    HEADER
***************/

header {
  display: flex;

  align-items: center;
  text-align: center;

  background-color: white;
}

header img {
  height: 60px;
  width: 20%;
}

header h1 {
  width: 80%;
  margin: 0;

  font-size: 2.1em;
}

/* The tag "main" use for put the nav on the side */
div.main {
  display: flex;
  min-height: calc(100% - 60px);
}

/**************
    NAV
***************/

nav {
  width: 20%;
  background-color: white;
}

nav ul {
  list-style: none;
}

nav ul li {
  padding-top: 1em;
}

li ul {
  font-weight: lighter;
}

.selectedMenu {
  color: #F3A41E;
}

nav a{
  color: black;
  text-decoration: none;
}

/**************
    MAIN CONTENT
***************/

main {
  box-sizing: border-box;
  width: 80%;
  padding: 20px;

  box-shadow: 0px 3px 5px rgba(20,20,20,0.15) inset;
}

p {
  font-weight: lighter;
}

label {
  font-size: 0.8em;
}

a {
    text-decoration: none;
    color : black;
    justify-content: center;
}

/**************
    FRAMED CONTENT
***************/

.framed{
  box-sizing: border-box;
  margin: 0px 40px 20px 40px;
  padding: 20px;
  background-color: white;
  border-radius: 20px;
  margin: 20px 0;
  position: relative;

}

.framed::after {
    content:url(../../image//icons/dots.svg) ;
    display: inline-block;
    position: absolute;
    height: 12px;
    width: 43px;
    bottom: 0px;
    right: 20px;
}

.framedTitle {
  margin-bottom: 0;
  margin-left: 1em;

  font-size: 1.3em;
  font-style: italic;
}

/**************
    FLEX
***************/

.flexContainer{
  display: flex;
}

.flexColumn{
  flex-flow: column;
  justify-content: space-around;
}

.flexContainer2{
  display: flex;
  justify-content: flex-start;
  gap : 15px;
  align-items: center;
  width: 50%;
}

/**************
    BUTTON
***************/

.button{
  background-color: white;
  border-style: solid;
  border-radius: 14px;
  border-width: thin;
  font-size: 0.8em;
  padding: 3px 25px;
}

.button:hover{
  cursor:pointer;
}

.main-button{
  color: #F3A41E;
  border-color: #F3A41E;
}

.main-button:hover{
  background: #F3A41E;
  color: white;
  font-weight: 400;
}

.reverse-button{
  background-color: #3E3E3E;
  border: none;
  color: #F3A41E;
}

.reverse-button:hover{
  color: white;
  font-weight: 400;
}

.buttonFormIndex{
  margin-top: 5px !important;
  margin-left: 10px !important;
}

button[type=submit] {
    justify-content: center;
    background-color: #F3A41E;
    color: white;
}

button[type=submit]:hover {
    background-color: #C98818;
}

/**************
    TEXT AND PASSWORD INPUTS
***************/

input[type=text], input[type=password], input[type=email]{
  background: #F3F3F3;
  border: none;
  border-radius: 10px;
  padding: 5px 0;
  padding-left: 25px;
  font-family: 'soleil';
  font-weight: 100;
}

input[type=text]:focus, input[type=password]:focus, input[type=email]:focus{
  outline: none;
}

input[type=text]::placeholder, input[type=password]::placeholder, input[type=email]::placeholder{
  color: #6D6D6D;
  font-style: italic;
}

/**************
  NOTIFICATIONS
***************/
.notification{
  z-index: 2;
  position: absolute;
  margin-left: 10%;
  top: 110px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-duration: 3s;animation-duration: 3s;
  -webkit-animation-fill-mode: both;animation-fill-mode: both;
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
  box-shadow: 5px 5px 10px rgb(0 0 0 / 30%);
}

@-webkit-keyframes fadeOut {
  0% {opacity: 1;}
  70% {opacity: 0.8;}
  100% {opacity: 0;}
}

@keyframes fadeOut {
  0% {opacity: 1;}
  70% {opacity: 0.8;}
  100% {opacity: 0;}
}

.notification p{
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: 400;
  margin: 0;
}

.is-success p{
  color: white;
  background: #F3A41E;
}
