*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    font-family: 'Inter', sans-serif;
}
body {
    background-image: url('bg-1080p.jpg'); background-size: cover; background-repeat: no-repeat;
    display: flex; justify-content: center; align-items: start; height: 100vh; width: 100vw; overflow: hidden;
}
input[type='email'] {
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
input[type='submit'] {
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    background-color: #ee8d6c;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}
.message {
    margin-top: 10px;
    color: red;
}
.success {
    color: green;
}
.container {
    padding: 3rem; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.leave-your-email {
    margin: 20px 0; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.fcc {
    display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%;
}