﻿:root {
    --grey-100: #f2f5f7;
    --grey-200: #e2e8f0;
    --grey-300: #cbd5e1;
}

* {
    font-family: 'Inter', Inter, 'NotoSans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
    font-size: 12px;
    outline: none;
}

body {
    margin: 0;
    padding: 0;
}

.dx-login-button {
    font-family: "Inter", sans-serif,helvetica,-apple-system,BlinkMacSystemFont,Open Sans,Oxygen,Ubuntu,Cantarell,Helvetica Neue !important;
    border-radius: 50px !important;
}

.dx-login-input {
    padding: 10px;
}

.corner-ribbon {
    width: 200px;
    background: #e43;
    position: absolute;
    top: 25px;
    left: -50px;
    text-align: center;
    line-height: 40px;
    letter-spacing: 1px;
    color: #FFFFFF;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    background: var(--primary-colour);
    font-weight: bold;
}

.corner-ribbon.sticky {
    position: fixed;
}

.corner-ribbon.shadow {
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}

.corner-ribbon.top-right {
    top: 25px;
    right: -50px;
    left: auto;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.login__parent-group {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: stretch;
    min-height: 100vh;
}

.login__bg-block {
    background: var(--primary-colour);
    flex: 1 1 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.login__bg-block-img {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    z-index: 0;
    object-fit: cover;
    max-height: 100vh;
}

.login__sign-in-group {
    flex: 2.25 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: clamp(24px, 10%, 200px);
}

.login__sign-in-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login__heading {
    color: #092d74;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 12px;
}

.login__label {
    color: #051433;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    max-width: 404px;
    padding: 0 4px;
}

.login__forget-password-link {
    text-decoration: underline;
    color: #051433;
}

.login__password-group {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 404px;
    justify-content: space-between;
    align-items: center;
}

.login__copyright {
    margin-top: 24px;
}