@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

@font-face {
    font-family: 'classico-regular';
    src: url('assets/fonts/Classico.otf');
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 :root{
    --zenith-red: #D61C1C;
    --zenith-blue: #2E5096;
    --ink: #10151f;
  }
body {
    background-color: #fff;
	
/*background: url(assets/images/logo.jpeg) center center cover no-repeat fixed;
 background-image: url('assets/images/Voyage_logo_Design-16.png');
background-repeat: no-repeat;*/
    font-family: 'Montserrat', sans-serif;
}
body::before {
    width: 100%;
    height: 100vh;
    background-image: url(assets/images/coming-soon-patern.png);
    background-position: 100%;
    content: '';
    display: block;
    right: 0;
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    z-index: -1;
}

section .logo  {
    margin-bottom: 3rem;
}

section.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

span {
    font-size: 18px;
    color: #726965;
    margin: 1rem 0;
    letter-spacing: 1px;
}

/*h1 {
    font-family: 'classico-regular', sans-serif;
    color: #96979b;
    text-align: center;
    font-size: 6rem;
    font-weight: normal;
    letter-spacing: 6px;
}*/

  h1{
    font-weight: 900;
    font-size: clamp(30px, 6vw, 52px);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--zenith-red), var(--zenith-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
  }
.text-uppercase {
    text-transform: uppercase;
}

form input[type="email"]{
    border: none;
    background-color: #f4efec;
    padding: 10px;
    font-size: 16px;
    color: #3d3739;
    width: 310px;
}

form ::-webkit-input-placeholder { /* Edge */
    color: #3d3739;
    text-transform: uppercase;
    font-size: 12px;
}
  
form :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #3d3739;
    text-transform: uppercase;
    font-size: 12px;
}
  
form  ::placeholder {
    color: #3d3739;
    text-transform: uppercase;
    font-size: 12px;
}

form button {
    border:none;
    width: 26px;
    height: 39px;
    cursor: pointer;
    background-color: transparent;
}

*{
    outline: 0;
}


form svg {
    width: 15px;
    height: 15px;
    margin-top: 6px;
}

form .input-wrapper {
    display: flex;
    align-items: center;
    background-color: #f4efec;
    border: 1px solid transparent;
    padding: 3px 18px;
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
    position: relative;
    margin: 3rem 0;
}

form .input-wrapper::before {
    content: '';
    width: 100%;
    height: 49px;
    border-radius: 25px;
    background-color: transparent;
    position: absolute;
    top: 6px;
    display: block;
    left: 0;
    z-index: -1;
    box-shadow: -8px -16px 5px 0px rgba(255,255,255,0.75);
-webkit-box-shadow: -8px -16px 5px 0px rgba(255,255,255,0.75);
-moz-box-shadow: -8px -16px 5px 0px rgba(255,255,255,0.75);
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #f4efec inset !important;
}