* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Arial", sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #000;
    color: #999;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
}

p {
    margin: 0.5rem 0;
}

.showcase {
    width: 100%;
    height: 100vh;
    position: relative;
    background: url("https://images.unsplash.com/photo-1608942025318-1191eeade556?q=80&w=1155&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.65);
    box-shadow: inset 30px 10px 150px #000000;
}

.showcase-content {
    position: relative;
    z-index: 2;
    width: 100%;
    /* Adjusted for mobile */
    max-width: 500px;
    /* Adjusted for mobile */
    background: rgb(0, 0, 0, 0.65);
    margin: 0 auto;
    padding: 30px;
    /* Adjusted for mobile */
    border-radius: 16px;
}

.formm h1 {
    margin-bottom: 20px;
}

.formm {
    width: 100%;
    margin-bottom: 20px;
    /* Adjusted for mobile */
}

.formm .info {
    padding: 5px 0;
    margin-bottom: 20px;
}

.formm .info .email {
    margin-bottom: 20px;
    /* Adjusted for mobile */
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: none;
    padding: 10px;
    font-size: inherit;
}

.formm .btn {
    margin-bottom: 20px;
    /* Adjusted for mobile */
    width: 100%;
}

.btn-primary {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background: #007bff;
    color: #fff;
    font-size: inherit;
    font-weight: bold;
    border: none;
    cursor: pointer;
    outline: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}

.help {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.help a {
    color: #999;
}

.help a:hover {
    text-decoration: underline;
}

.signup {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.signup p {
    margin-right: 5px;
}

.more {
    font-size: 0.8em;
    line-height: 1.1em;
}

.more a {
    color: rgb(17, 108, 228);
}

.more a:hover,
.signup a:hover {
    text-decoration: underline;
}

 ::-webkit-scrollbar {
    width: 5px;
}

 ::-webkit-scrollbar-thumb {
    background-color: #496989;
    border-radius: 10px;
    border: 1px solid #496989;
}

 ::-webkit-scrollbar-track {
    border-radius: 10px;
}