/* 
MAIN COLOR: #6bb745; 
SECONDARY COLOR: rgb(3, 74, 226); 

GREY COLOR: #000000
TEXT COLOR: rgba(10,10,10,0.6);

GRADIENT: linear-gradient(45deg,rgba(107,183,69,0.71) 0%,rgba(3,74,226,0.86) 100%)

*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  font-family: "Titillium Web", sans-serif;
  position: relative;
}

.container {
  min-height: 100vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: linear-gradient(
    45deg,
    rgba(3, 74, 226, 0.86) 0%,
    rgba(107, 183, 69, 0.71) 100%
  );
  flex-wrap: wrap;
}

.left-column {
  text-align: center;
  display: grid;
  justify-items: end;
}

.right-column {
  background-color: #f7f7f7;
  padding: 50px;
  border-radius: 5px;
  box-shadow: 10px 10px 0px 0px #6bb745;
}

.right-column h2 {
  margin-bottom: 20px;
}

label {
  color: rgba(10, 10, 10, 0.6);
}

.right-column label {
  font-size: 20px;
  display: inline-block;
}

.right-column input {
  margin-bottom: 10px;
  border: none;
  border-bottom: 2px solid #6bb745;
  font-size: large;
  padding-left: 5px;
  padding-right: 5px;
  height: 35px;
  display: block;
  width: 100%;
}

.input-error {
  border-bottom: 2px solid #ee1919 !important;
}

input:focus {
  outline: none;
}

button {
  padding: 15px 30px;
  border: none;
  background-color: rgb(3, 74, 226);
  color: white;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
}

.right-column button {
  padding: 15px 30px;
  margin-top: 10px;
  border: none;
  background-color: rgb(3, 74, 226);
  color: white;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-size: 20px;
}

button:hover {
  background-color: #1857df;
}

button:active {
  background-color: rgb(107, 183, 69);
}

footer {
  background: #034ae2;
  text-align: center;
  padding: 40px;
}

/* MODAL */

.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.767);
  text-align: center;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 40px;
  width: 20%;
  border-radius: 10px;
  color: rgba(10, 10, 10, 0.6);
  font-size: 20px;
  box-shadow: 5px 5px 0px 0px #6bb745bd;
}

.error-message {
  display: none;
  color: rgb(223, 21, 21);
  margin-top: 10px;
}

.copyright {
  color: #fff;
}

.logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

ul {
  list-style: none;
}

.floating-notif {
  position: absolute;
  top: 100px;
  right: 50%;
  padding: 20px;
  color: white;
  border-radius: 10px;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.5s ease-in;
  z-index: 10000;
}

.floating-notif-success {
  background-color: #6bb745;

}

.floating-notif-error {
  background-color: rgb(223, 21, 21);
}



