﻿
@import url('consac-colors.css');


body {
    min-height: 100dvh;
    background-color: var(--cs-bg-black);
    color: var(--cs-text-white);
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.25rem;
    color: #212529;
    z-index: 5;
    transition: color 0.15s ease-in-out;
}

    .password-toggle:hover {
        color: #495057;
    }

.password-input {
    padding-right: 3rem !important;
}
