:root {
    --row_heigth: 25px;
    --accent_color: #31425e;
    --accent_red:#8f3131;
    --accent_green: #318f49;
    --btn_color_basis: var(--accent_color);
    --btn_color_hover: var(--accent_green);
    --btn_color_active: #BDC2CB;
    --btn_color_shadow: #E4E6EA;
    --text_color: #ffffff;
    --header_height: 100px;
}

        body {
            font-family: Arial, sans-serif;
            background: #f5f8fa;
            color: #333;
            margin: 0;
            padding: 0;
        }
        header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header_height);
            background: var(--accent_color);
            padding: 1rem 2rem;
            text-align: center;
            }
        h1 {
            color: #fff;
            font-size: 1.5rm;
            font-weight: bold;
        }
        main {
            position: absolute;
            width: 80%;
            margin: 15px 9% 0px 10%;
            top: var(--header_height);
            background: #fff;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        div.card {
            position: relative;
            width: 90%;
            margin: 20px auto 50px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        form, .direction {
            position: relative;
            width: 90%;
            padding: 20px;
            margin: 10px auto;
        }
        form > div {
            position: relative;
            width: 100%;
            margin: 5px 5px 0px 0px;
        }
        form > div > label {
            position: relative;
            width: 150px;
            text-align: right;
            margin: 0px auto;
            padding: 8px 10px 10px 10px;
            display: inline-block;
            background-color: var(--accent_color);
            color: var(--text_color);
            border-radius: 12px 0 0 12px;

        }
        form > div > input {
            position: relative;
            width: 250px;
            padding: 10px;
            background-color: var(--text_color);
            color: var(--accent_color);
            Border-radius: 0 12px 12px 0;
            border: 1px solid var(--accent_color)
            
        }

        h2 {
            position: relative;
            margin: 20px;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            color: var(--accent_color);


        }

        div.btn_layout {
            position: relative;
            margin: 5px 0px 0px 0px;
        }

        button, .btn {
            font: 1.0rm;
            position: relative;
            display: inline-block;
            margin: 0px;
            width: 152px;
            padding: 10px;
            background: var(--btn_color_basis);
            color: #fff;
            text-decoration: none;
            border: 0px #fff solid;
            transition: all 0.2s ease;
            box-shadow: 0 0px 10px rgba(156,163,177, 0.2);
            transform: translateY(0px);
        }

        button {
            top: -1px;
            border: 1px var(--btn_color_basis) solid;
            width: 270px;
        }

        #last_btn {
            border-radius: 0 12px 12px 0;
        }

        #first_btn, #forgot_btn {
            border-radius: 12px 0 0 12px;
        }
        #forgot_btn {
            background-color: var(--accent_red);
            padding: 9px;
        }

        button:hover, .btn:hover {
            background: var(--btn_color_hover);
            box-shadow: 0 0px 5px rgba(156,163,177, 0.4);
            transform: scale(1.01);
        }

        button:hover {
            top: -1px;
            border: 1px var(--btn_color_hover) solid;
        }

        button:active,.btn:active {
            background: var(--btn_color_active);
            box-shadow: 0 0px 5px rgba(156,163,177, 0.8);
            transform: translateY(2px);
        }

        button:active {
            top: -1px;
            border: 1px var(--btn_color_active) solid;
        }


        table {
            border-collapse: collapse;
            width: 100%;
            background: #fff;

        }
        tr {
            position: relative;
            height: var(--row_heigth);
        }
        th, td {
            padding: 6px 18px;
            text-align: left;        }
        th {
            background: var(--accent_color);
            color: var(--text_color);
            font-weight: bold;
        }
        tr:nth-child(even) {
            background: var(--btn_color_shadow);
        }
        a {
            position: relative;
            height: 100%;
            text-decoration: none;
        }
        div.a {
            display: flex;
        }
        div.img {
            position: relative;
            height: 100%;
            width: 25px;
            margin: 0 0 0 10px;
        }
        img {
            position: relative;
            max-height: 20px;
            max-width: 25px;
        }

        div.text {
            position: relative;
            height: 100%;
            align-items: center;
            margin-left: 25px;
            top: -0px;
            color: #17429e;
            font-weight: 500;
        }

        div.text:hover {
            color: #5483e9;
        }

        
