* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'Montserrat';
    color: #4D4D4D;
    background-color: #ffffff;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:focus {
    outline: none;
}

p {
    margin-bottom: 0;
}

p:not(:last-of-type) {
    margin-bottom: 15px;
}

.welcome-screen {
    padding-top: 45px;
    padding-bottom: 45px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.welcome-screen .main-title h1 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 35px;
    color: #4D4D4D;
    margin-bottom: 16px;
}

.welcome-screen .main-title p {
    color: #4D4D4D;
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-size: 20px;
}

.welcome-screen .brand-logo {
    margin: 40px 0px 40px;
}

.welcome-screen .brand-logo img {
    display: block;
    margin: auto;
}

.early-access .sec-title h2{
    font-family: "Montserrat", serif;
    font-weight: 600;
    font-size: 22px;
    color: #4D4D4D;
    letter-spacing: 3px;
    margin-bottom: 30px;
}
.access-form .cust-input{
    width: 100%;
    height: 55px;
    border: 0;
    outline: none;
    background-color: rgb(245 141 89 / 10%);
    padding: 15px;
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-size: 18px;
    color: #808080;
    margin-bottom: 28px;
}

::placeholder{
    color: #808080;
}

::-moz-placeholder{
    color: #808080;   
}

::-webkit-input-placeholder{
    color: #808080; 
}
.access-form label.m-text{
    margin-bottom: 15px;
}
.access-form label{
    color: #4D4D4D;
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-size: 18px;
}

.access-form .form-check-input{
    width: 20px;
    height: 20px;
    border-radius: 0;
    background-color: rgb(245 141 89 / 20%);
    border: 0;
}
.access-form .form-check-input:focus{
    box-shadow: none;
}

.form-check-input:checked[type=radio]{
    background-image:url('../images/check.png');
}
.access-form .form-check:not(:last-of-type){
    margin-bottom: 15px;
}

.access-form .form-check{
    padding-left: 2em;
}
.form-check .form-check-input{
    margin-left: -2em;
    background-size: 15px;
    cursor: pointer;
}
.access-form .form-check label{
    cursor: pointer;
}
.btn-sub{
    padding: 0 15px;
    line-height: 45px;
    background-color: #F58D59;
    border: 0;
    outline: none;
    font-family: "Montserrat", serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    max-width: 150px;
    text-align: center;
    width: 100%;
    margin-top: 30px;
}
#successMessage{
    display:none;
    text-align: center;
    color: #4D4D4D;
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-size: 20px;
}