.welcome_block{
    background-color: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 80%;
    height: 100%;
}
.welcome_text {
    display: flex;
    width: 100%;
    height: 70%;
    background-color: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.welcome_video {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.welcome_video iframe {
    width: 560px;
    height: 360px;
}
@media only screen and (max-width: 1000px){
    .welcome_video iframe {
        
    }
}
@media only screen and (max-width: 767px){
    .welcome_video iframe {
        width: 350px;
        height: 651px;
    }
}

@media only screen and (max-width: 444px) {
    
}

.logo_block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 80%;
    top: 0;
    background-color: grey;
}
@media only screen and (max-width: 444px) {
    .logo_block {
        justify-content: start;
    }
}

.logo_block img {
    width: 75px;
}

.welcome_block a {

    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    margin: 10px !important;
    padding: 10px !important;

    text-decoration: none;
    
    cursor: pointer;
    width: 200px;
    min-height: 50px;

    border: 1px solid #00B1CC;
    box-sizing: border-box;
    border-radius: 5px;

    transition: transform 0.3s ease;
    
}

.welcome_block #sign-up-welcome {
    color: white;
    background-color: #00B1CC;
}

.welcome_block #log-in-welcome {
    color: #00B1CC;;
    background-color: none;
}

.welcome_block a:hover{
    transform: scale(1.1);
}

.welcome_block .welcome-text{
    font-size: 60px;
    margin: 0;
    padding: 0;
    white-space: auto;
    text-align: center;
}

.welcome_block .motto {
    font-size: 16px;
    color: black;
    padding: 10px;
    font-weight: 0;
    white-space: auto;
}

.welcome_block .welcome-button-holder {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .welcome_block .welcome-text{
        font-size: 50px;
    }
    .welcome_block .motto {
        font-size: 15px;
    }
}

@media only screen and (max-width: 444px) {
    .welcome_block {
        align-items: start;
    }
    .welcome_block a{
        font-size: 14px;
        width: 100%;
        min-height: 40px;
    }
    .welcome_block .welcome-text{
        font-size: 40px;
        text-align: start;
    }
    .welcome_block .motto {
        font-size: 14px;
        text-align: start;
        padding-left: 0px;
    }
    .welcome_block .welcome-button-holder {
        flex-direction: column;
    }
}

/* Signup and Login CSS */

.account-form {
    background-color: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 50px;
    width: 33%;
}
@media only screen and (max-width: 1000px){
    .account-form {
        width: 55%;
    }
}
@media only screen and (max-width: 767px){
    .account-form {
        width: 66%;
    }
}

@media only screen and (max-width: 444px) {
    .account-form {
        width: 77%;
    }
}

.account-form p {
    font-size: 20px;
    white-space: nowrap;
}

.account-form button {
    font-size: 15px;
    border-radius: 5px;
}

.account-form hr {
    width: 80%;
    color: black;
}

.back-btn-reg-holder{
    position: relative;
    left: 0;
    align-self: flex-start;
    padding-bottom: 0px;
}

.back-btn-reg {
    color: grey;
    transition: 0.3s ease transform;
}
.back-btn-reg:hover {
    transform: scale(1.2);
}

.account-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.account-form .switch-text {
    text-align: center;
}
.account-form .switch-text a {
    color: blueviolet;
    text-decoration: none;
}
.account-form .switch-text a:hover {
    text-decoration: underline;
}

.account-field, .account-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.account-field input, .account-field select, .account-btn button {
    display: block;
    width: 80%;
    height: 50px;
    padding: 12px;
    margin: 10px 0 10px 0;
    border: none;
}

.account-field input.invalid {
    border: 1px solid red;
}

.account-field input, .account-field select {
    background: none;
    border: 1px solid grey;
}

.account-field input:focus, .account-field select:focus {
    outline: none;
    border: 1px solid #00B1CC;
}

.account-btn button {
    /*jungle*/
    background-color: #00B1CC;
    color: white;
    cursor: pointer;
}

.account-btn a {
    background-color: #EF7A85;
    color: white;

    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;

    text-decoration: none;
    
    cursor: pointer;
    width: 40%;
    height: 50px;

    box-sizing: border-box;
    border-radius: 15px;
    
}

.account-btn a:hover {
    background-color: #EC5B69;
}

.account-btn button:hover {
    background-color: #008DA3;
}

.account-btn .secondary-btn {
    background-color: white !important;
    outline: 1px solid #00B1CC !important;
    color: #00B1CC !important; 
}

.account-btn .secondary-btn:hover {
    background-color: #F1F4F9 !important;
}

.registration-error {
    font-size: 15px !important;
    font-style: italic;
    color: red;
}

.step-div {
    text-align: center;
    margin-top: 20px;
}

.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.field-requirement{
    margin: 0;
    padding: 0;
    width: 80%;
    align-items: center;
    display: none;
    
}

.field-requirement i {
    color: red;
    display: inline;
}

.field-requirement p {
    display: inline;
    font-size: 10px;
    color: red;
    margin: 0;
    padding-left: 5px;
    white-space: normal;
}

.register-title {
    width: 100%;
    word-wrap: break-word;
    text-align: center;
    margin-bottom: 5px;
    font-size: 20px;
    color: black;
}

.register-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    padding: 8px;
    background-color: #CE7BF4;
    border-radius: 8px;
    opacity: 75%;
    white-space: nowrap;
}

.register-icon {
    padding-right: 5px;
    font-size: 15px;
}

