* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 1000;
}

header nav {
    display: flex;
}

header nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

header h1 {
    font-size: 1.5rem;
    color: white;
}

nav a:hover {
    color: #EFBF9B;
}

html, body {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
    background-image: url('../Images/sunset.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

h2 {
    color: #191970;
    text-align: center;
    margin-bottom: 4%;
}

h3 {
    color: red;
    font-weight: bold;
    text-align: center;
}

form {
    font-weight: bold;
    background: linear-gradient(0deg, rgba(200, 200, 200, 0.1) 0%, rgba(180, 180, 180, 0.5) 50%, rgba(200, 200, 200, 0.1) 100%);
    border-radius: 10px;
    box-shadow: -4px 0px 5px -3px rgba(0, 0, 0, 0.5), 4px 0px 5px -3px rgba(0, 0, 0, 0.5);
    width: 520px;
    height: auto;
    padding: 30px 50px;
    backdrop-filter: blur(10px);
    border-top: rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.informations {
    font-weight: bold;
    background-color: white;
    border-radius: 8px;
    margin: 2% 0 2% 0;
}

.informations i {
    color: #191970;
    padding-left: 10px;
}

.informations input {
    width: 92%;
    height: 30px;
    border: none;
    font-size: 16px;
    margin: 1% 1% 1% 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.informations input:focus-visible {
    outline: none;
}

.submit {
    width: 100%;
    height: 100%;
    font-weight: bold;
    background: none;
    color: black;
    border: 1px solid #191970;
    padding: 6px 15px 6px 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin: 2.5% 0 5% 0;
    transition: transform 0.3s ease;
}

.submit:hover {
    background-color: #191970;
    color: white;
    transform: scale(1.05);
}

a {
    text-decoration: none;
    color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

a:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #C0C5C1;
}