@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
    font-family: Roboto, 'Source Sans Pro', sans-serif;
}

body {
    overflow: hidden;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.welcome-page {
    display: grid;
    width: 100%;
    height: 100vh;
    grid-template-columns: 500px 1fr;
}

.welcome-page > .left-block {
    position: relative;
    background: white;
    box-shadow: 13px -1px 20px 0 rgba(0, 0, 0, 0.23);
    z-index: 10;
}

.welcome-page .login-form-container {
    position: absolute;
    top: 46vh;
    left: 50%;
    transform: translate(-50%, -50%);
}

.welcome-page .request-demo {
    position: fixed;
    bottom: 2%;
    left: 2%;
    color: #C4C5C8;
    font-size: 12px;
}

@media screen and (max-width: 1030px) {
    .welcome-page {
        grid-template-columns: 100%;
    }

    .welcome-page .right-block {
        display: none;
    }
}

.form-container {
    margin: 0 0;
    max-width: 294px;
}

.login-input.login-input {
    box-sizing: content-box;
    border-width: 0 0 thin 0;
    width: 274px;
    height: 26px;
    border-radius: 0;
    font-size: 15px;
    margin: 12px 0 4px;
    padding: 4px 0;
    color: #000000;
    box-shadow: 0 0 0 100px white inset !important;
    outline: none;
}

.login-input.login-input:focus {
    border: solid #000000 !important;
    border-width: 0 0 thin 0 !important;
}

.request-demo a {
    color: #A536DE;
    text-decoration: none;
}


#kc-header-wrapper::before {
    content: "";
    display: block;
    background-image: url(../img/dy-logo.png);
    width: 53px;
    height: 53px;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 auto 10px;
}

.login-title-logo {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin-bottom: 5%;
}

.logo-img {
    max-width: 170px;
}

.kc-logo-text {
    display: none;
}

.alert {
    background-color: transparent;
    padding: 0;
    font-family: 'Roboto', 'Source Sans Pro', sans-serif;
    font-size: 12px;
    font-weight: normal;
    text-shadow: none;
    color: #DA1E28;
    margin: 5% 0;
    min-height: 18px;
}

.login-remember-text {
    font-size: 14px;
}

.login-remember-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.login-forgot {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.link-primary {
    color: #A536DE;
}

#backToApplication {
    color: #A536DE;
    font-size: 15px;
}

.text-small {
    font-size: 12px;
    line-height: 14px;
}

.text-medium {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.visually-hidden,
input[type="checkbox"].visually-hidden,
input[type="radio"].visually-hidden {
    position: absolute;

    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;

    white-space: nowrap;

    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}


.login-input::placeholder {
    font-size: 15px;
    line-height: 20px;
}


.sign-in-btn {
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 36px;
    font-size: 14px;
    color: #FFFFFF;
    background: #A536DE;
    border: none;
    border-radius: 3px;
    box-shadow: none;
    transition: 300ms all;
    cursor: pointer;
    padding: 0 16px;
    font-weight: 700;
}

.sign-in-btn:hover {
    background-color: #7B11B1;
}

.sign-in-btn_secondary {
    border: 1px solid #C4C5C8;
    color: #A536DE;
    background: #FFFFFF;
}

.sign-in-btn_secondary:hover {
    background-color: #DDDEE1;
}


.login-remember-container .remember-checkbox {
    border: 2px solid #5C5D60;
    border-radius: 2px;
}


.login-remember-container .remember-checkbox:checked {
    border: 2px solid #A536DE;
}


.login-welcome {
    color: #000000;
    font-family: Roboto, 'Source Sans Pro', sans-serif;
    font-weight: lighter;
    font-size: 28px;
    line-height: 100%;
    text-align: center;
}

.message {
    color: #303132;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

.instruction-message {
    text-align: center;
    width: 257px;
    margin: auto auto 8px;
}

.instruction-message_secondary {
    color: #9D9EA1;
}

.subcaption {
    color: #303132;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
}


.welcome-to-dy {
    font-family: Roboto, 'Source Sans Pro', sans-serif;
    font-size: 26px;
    line-height: 28px;
    text-align: center;
    width: 215px;
    margin: auto;
    font-weight: 300;
}

.back-link-container {
    display: flex;
    padding: 16px 16px 16px 0;
    gap: 4px;
}

.back-link-container-center {
    justify-content: center;
    margin-top: 40px;
}

.back-link-btn {
    color: #A536DE;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
}

.password-rules {
    display: flex;
    flex-direction: column;
    padding: 4px 0 20px 0;
    margin-top: -8px;
}

.password-rule {
    font-family: 'Roboto', 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #303132;
}

.content {
    display: flex;
    flex-direction: column;
}

.instructions {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 300px;
}

.instruction {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-message {
    font-family: 'Roboto', 'Source Sans Pro', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: #303132;
}

.code-message {
    width: 300px;
}


.username-container {
    padding: 20px 0;
}

.card-layout {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}


.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vertical-spacer {
    margin: 8px 0;
}

.vertical-spacer::after {
    content: '\00a0'; /* non-breaking space */
    display: block;
}

.sms-btn-container {
    padding-top: 12px;
}

.dont-ask-checkbox {
    font-weight: bold;
}

.error-text {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #DA1E28;
    padding-top: 4px;
    max-width: 274px;
}

.disabled {
    background-color: #DDDEE1;
    cursor: not-allowed;
    pointer-events: none;
}

#dynamic-header {
    min-height: 30px;
}

#dynamic-header .greeting_dy {
    animation: 1s ease 0s 1 normal none running fade-in;
    font-size: 28px;
}

#pm-text {
    margin: 14px 0;
}

.login-decoration{
    /*background: url(/assets/svgs/login-decoration.svg) no-repeat;*/
    position: fixed;
    left: -70px;
    width: 203px;
    height: 80px;
    z-index: 100;
}

.request-demo p {
    margin: 12px 0;
}

#confirmLogout {
    visibility: hidden;
}
