* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Intro', Arial, sans-serif;
}
body {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    font-size: 14px;
}

.main-wrapper {
    display: flex;
    justify-content: center;
    background-color: black;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}

.dummy-plug {
    width: 1440px;
    height: 900px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/bg.jpg");
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.plug-header {
    font-size: 99px;
    font-weight: 700;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    background: -webkit-linear-gradient(#bebebe, #fff);
    -webkit-background-clip: text;
    margin: 0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Intro', Arial, sans-serif;
    -webkit-text-fill-color: transparent
}

.prepage-form-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.prepage-email-content {
    font-size: 20px;
    color: #fff;
    font-family: "bahnschrift-condensed", sans-serif;
    text-align: center;
    display: flex;
    margin-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    justify-content: center;
}

.email-btn-container {
    display: flex;
}

.prepage-form {
    width: 440px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.lorem-content {
    color: #fff;
    width: calc(100% - 55px);
    font-family: "bahnschrift-condensed", sans-serif;
    margin-left: 15px;
}

.checkbox-container {
    margin-top: 25px;
    display: flex;
}

#lorem {
    width: 30px;
    height: 30px !important;
    border: 2px solid white;
    background-color: black;
    margin: 0;
}

#prepage-form-input {
    width: 280px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    border: 2px solid #fff;
    color: white;
    background-color: black !important;
    font-size: 16px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px black inset !important;
     -webkit-text-fill-color: white !important;
}

#prepage-form-input:focus-visible {
    outline: none;
    background-color: black;
    
}

.validation {
    color: rgb(208, 0, 0);
    margin-top: 6px;
    display: none;
    margin-bottom: 0;
    font-size: 12px;
}

.prepage-button {
    width: 140px;
    height: 49px;
    font-size: 16px;
    background-color: white;
    border: none;
    font-family: "bahnschrift-condensed", sans-serif;
    cursor: pointer;
}

@media (max-width: 600px) {
    .dummy-plug {
        background-position: right;
        justify-content: space-between;
        padding-top: 10%;
        padding-bottom: 20%;
        height: 80vh;
        width: 100vw;
    }

    .prepage-form {
        width: 320px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .prepage-email-content {
        margin-bottom: 50px;
    }

    .checkbox-container {
        margin-top: 40px;
    }

    .plug-logo {
        width: 160px;
    }

    .plug-header {
        font-size: 80px;
    }
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    margin: 10px;
}

input[type="checkbox"]:checked {
    background-color: #4CAF50;
    border: 1px solid #4CAF50;
}

input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 4px;
    width: 6px;
    height: 12px;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    border-color: white;
    border-style: solid;
}

.checkboxspace {
    height: 100%;
    width: 30px;
    display: flex;
    align-items: center;
}
