:root {
    --login-dark-blue: #217093;
    --login-med-blue: #4eb8dd;
    --login-light-blue: #ddf1fa;
    --login-input-bg: #f3fafd;
}

.auth-layout {
    background-color: #eff3f4;
    -webkit-font-smoothing: antialiased;
}

.auth-layout .animated-login-shell {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.auth-layout .animated-login-shell header {
    text-align: center;
}

.auth-layout .animated-login {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 2.25em;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0.5em;
    font-family: 'Source Sans Pro', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.auth-layout .animated-login .svgContainer {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1em;
    border-radius: 50%;
    pointer-events: none;
}

.auth-layout .animated-login .svgContainer > div {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    border-radius: 50%;
    padding-bottom: 100%;
}

.auth-layout .animated-login .svgContainer .mySVG {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform-origin: center;
}

.auth-layout .animated-login .svgContainer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 2.5px solid var(--login-dark-blue);
    border-radius: 50%;
}

.auth-layout .animated-login .inputGroup {
    position: relative;
    margin-bottom: 2em;
}

.auth-layout .animated-login .inputGroup:last-of-type {
    margin-bottom: 0;
}

.auth-layout .animated-login label {
    display: block;
    margin-bottom: 12px;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--login-dark-blue);
}

.auth-layout .animated-login input[type='text'],
.auth-layout .animated-login input[type='password'] {
    display: block;
    width: 100%;
    height: 65px;
    margin: 0;
    padding: 0.875em 1em 0;
    box-sizing: border-box;
    border: 2px solid var(--login-dark-blue);
    border-radius: 4px;
    background-color: var(--login-input-bg);
    font-size: 1.55em;
    font-weight: 600;
    color: #353538;
    transition: box-shadow 0.2s linear, border-color 0.25s ease-out;
}

.auth-layout .animated-login input[type='text']:focus,
.auth-layout .animated-login input[type='password']:focus {
    outline: none;
    border-color: var(--login-med-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.auth-layout .animated-login button[type='submit'] {
    display: block;
    width: 100%;
    height: 65px;
    margin: 0;
    padding: 0.65em 1em 1em;
    box-sizing: border-box;
    border: none;
    border-radius: 4px;
    background-color: var(--login-med-blue);
    font-size: 1.55em;
    font-weight: 600;
    color: #fff;
    transition: background-color 0.2s ease-out;
}

.auth-layout .animated-login button[type='submit']:hover,
.auth-layout .animated-login button[type='submit']:active {
    background-color: var(--login-dark-blue);
}

.auth-layout .animated-login .inputGroup1 .helper {
    position: relative;
    display: block;
    margin-top: 0.5em;
    padding-left: 0.1em;
    font-family: inherit;
    font-size: 0.95em;
    font-weight: 400;
    color: rgba(33, 112, 147, 0.75);
    letter-spacing: 0.02em;
}

.auth-layout .animated-login .inputGroup1.focusWithText .helper {
    transform: none;
    opacity: 1;
}

.auth-layout .animated-login .inputGroup2 input[type='password'] {
    padding: 0.4em 1em 0.5em;
}

.auth-layout .animated-login .inputGroup2 input[type='text'] {
    padding: 0.025em 1em 0;
}

.auth-layout .animated-login #showPasswordToggle {
    position: absolute;
    top: 0.25em;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.75em;
    padding-left: 1.45em;
    font-size: 1em;
    color: var(--login-dark-blue);
    cursor: pointer;
    user-select: none;
}

.auth-layout .animated-login #showPasswordToggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.auth-layout .animated-login #showPasswordToggle .indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 0.85em;
    height: 0.85em;
    border: 2px solid var(--login-dark-blue);
    border-radius: 3px;
    background-color: var(--login-input-bg);
}

.auth-layout .animated-login #showPasswordToggle .indicator::after {
    content: '';
    position: absolute;
    top: 0.025em;
    left: 0.25em;
    width: 0.2em;
    height: 0.5em;
    border: solid var(--login-dark-blue);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    visibility: hidden;
}

.auth-layout .animated-login #showPasswordToggle input:checked ~ .indicator::after {
    visibility: visible;
}

.auth-layout .animated-login #showPasswordToggle input:focus ~ .indicator,
.auth-layout .animated-login #showPasswordToggle:hover .indicator {
    border-color: var(--login-med-blue);
}

.auth-layout .animated-login #showPasswordToggle input:disabled ~ .indicator {
    opacity: 0.5;
}

.auth-layout .animated-login #showPasswordToggle input:disabled ~ .indicator::after {
    visibility: hidden;
}

.auth-layout .animated-login .alert {
    width: 100%;
}
