.logo-container {
    background-color: var(--white-color);
    box-sizing: border-box;
    height: 150px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.full-screen-bg {
    background-color: var(--bg-color);
    height: 100vh;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    margin: 0;
}


header {
    background-color: var(--white-color);
}

#header-company-logo {
    background-image: url(./../img/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 5px 5px 20px;
    box-sizing: border-box;
    height: 70px;
    width: 200px;

}

.header-text {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.25px;
    margin: 0 auto;
    height: 65px;
    align-content: center;
    padding: 4px;
}

.password-reset-form-text {
    font-size: 0.625rem;
    margin: 20px 0;
}

#reset-password-form {
    width: 100%;
}

.password-reset-form-wrapper {
    padding: 30px;
}

.reset-password-wrapper {
    width: 100%;
    padding-bottom: 10px;
}

.email-label {
    font-size: 0.625rem;
    font-weight: var(--font-weight-bold);
}

@media (max-width: 2560px) {
    .password-validation-form-wrapper {
        font-size: 0.875rem;
    }

    .email-label {
        font-size: 0.875rem;
    }

    .password-reset-form-text  {
        font-size: 0.875rem;
    }

    .password-reset-form-text {
        font-size: 0.875rem;
    }

    .header-text {
        font-size: 1.5rem;
    }

    .reset-input{
        font-size: 0.8rem;
        height: 2.45rem !important;
    }

    .code-input{
        height: 2.45rem !important;
    }
}

.reset-input {
    height: 1.75rem;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 80%;
    margin-top: 10px;
}

.btn {
    border-style: none;
    padding: 10px 5px;
    margin: 20px 7px;
    text-decoration: none;
    color: var(--btn-color);
    cursor: pointer;
    text-align: center;
    max-width: 30%;
    min-width: 25%;
    flex: 1;
    box-sizing: content-box;
    transition: background var(--transition-duration), box-shadow var(--transition-duration);
    box-shadow: var(--box-shadow);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-base);
    border-radius: var(--btn-radius);
    white-space: normal;
}

.btn-primary {
    color: var(--btn-color);
    background-color: var(--btn-bg-color);
}

.btn-primary:hover {
    background-color: var(--btn-bg-hover-color);
}

.btn-disabled {
    color: var(--disabled-color) !important;
    background-color: var(--disabled-background-color) !important;
}

.btn-secondary {
    color: var(--btn-secondary-color);
    background-color: var(--btn-secondary-bg-color);
}

.btn-secondary:hover {
    background-color: var(--btn-secondary-bg-hover-color);
}

#passwordSuccessfulChangedBtn {
    white-space: nowrap;
    min-width: 40%
}

#submit-button {
    margin-left: 0;
}

.message-wrapper {
    justify-content: start;
    width: 100%;
}

.message {
    font-size: var(--font-size-small);
    color: var(--white-color);
    padding: 16px;
    border-radius: 6px;
    background-color: var(--msg-bg-color);
    border: 1px solid var(--msg-border-color);
    margin-bottom: 20px;
}

.password-reset-main-div{
    justify-self: center;
    justify-content: center;
    display: flex;
}

.invisible {
    display: none;
}

.safari-center-wrapper{
    justify-self: center;
    justify-content: center;
    display: flex;
}
