/* VARIABLES
----------------------------------------------- */
:root {
    --background-color: #FFFEFA;
    --Tittle_color_primary: #18788B;
    --Tittle_color_primary_hover: #44a4b8;

    --NavBar_Button: #0e2c4d;

    --overlay_IMG: #52909c9a;
}

@font-face {
    font-family: 'Chalkboard';
    src: url('../Fonts/Chalkboard/Chalkboard-Regular.ttf') format('truetype');
} 

@font-face {
    font-family: 'lazy_dog';
    src: url('../Fonts/Lazy_Dog/lazy_dog.ttf') format('truetype');
}  

@font-face {
    font-family: 'MelonFruit';
    src: url('../Fonts/Melon_Fruit/Melon\ Fruit.otf') format('truetype');
} 

@font-face {
    font-family: 'WorkSans';
    src: url('../Fonts/WorkSans/Fonts/TTF/WorkSans-Variable.ttf') format('truetype');
} 

/* BASE
----------------------------------------------- */
body {
    background-color: var(--background-color);
    margin: 0; 
    opacity: 0;
    transition: opacity 1s ease-in-out; 
    overflow: hidden;
}

body.loaded {
    opacity: 1;
}

.GradientLine {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, #00000000, var(--Tittle_color_primary), #00000000);
}

.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------- */
.arrow {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 8px;

    transition: .3s ease;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}


/* --------------------------------------------------------------------- */
#background_Image {
    width: 100%;
    top: -180px;
    position: absolute;
    filter: brightness(0.5) blur(7px);
    transform: scale(1.02);
    z-index: -1;
}

#input_Password {
    width: 420px;
    height: 15px;
    padding: 10px;
    border-radius: 50px;
    border: 2px solid #00000023;
    box-shadow: 2px 5px 5px 0px #00000023;
    transition: .3s ease;
    font-family: 'WorkSans';
}

.send_password {
    background-color: #fff; 
    border-radius: 50px; 
    width: 40px; 
    height: 40px; 
    display: flex ; 
    align-items: center; 
    left: 20px; 
    position: relative;
    cursor: pointer;
    transition: .3s ease;
}

.send_password:hover {
    transform: scale(1.1);
}

.send_password i {
    position: relative;
    left: 7px;
}

#PasswordTitle {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: "Chalkboard";
    color: #fff;
    margin-right: 30px;
}

#Download_Button {
    background-color: #fff;
    width: 260px;
    height: 35px;
    border-radius: 50px;
    box-shadow: 2px 5px 5px 0px #00000023;
    display: none;
    justify-content: center;
    align-items: center;
    font-family: 'WorkSans';
    cursor: pointer;
    transition: .3s ease;
}

#Download_Button:hover {
    transform: scale(1.06);
}

@media screen and (max-width: 767px) {

    #background_Image {
        width: auto;
        height: 100vh;
    }

    #input_Password {
        width: 282px;
    }
}

