﻿body {
    margin: 0;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0,0,0,0.1);
    border-radius: 12px;
}

::-webkit-scrollbar-thumb {
    border-radius: 12px;
    height: 30px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.3);
    background-color: var(--color-table-primary);
}

.container_main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background: linear-gradient(to bottom, #EAECF0, white);
    padding: 0 16px;
    width: 100%;
    overflow: hidden;
}

.logo {
    height: auto;
    max-width: 300px;
}

.login-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    padding: 40px 40px;
    background-color: white;
    box-shadow: 0 1px 19px #00000014;
    margin: auto;
    top: 35%;
    transform: translateY(-35%);
    position: absolute;
    left: 0;
    right: 0;
}

p {
    font-size: 18px;
    margin-bottom: 16px;
    max-width: 800px;
}

.decoration-line {
    width: 100%;
    max-width: 500px;
    height: 1px;
    background-color: #000;
    margin: 28px 0;
}

.btn {
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 18px;
    border: 1px solid black;
    border-radius: 50px;
    background-color: white;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn:hover {
        background-color: #63b1ff;
        color: white;
        border-color: #63b1ff;
    }

    .btn:focus, .btn:blur {
        outline: none;
        border: 1px solid #63b1ff;
        background-color: #63b1ff;
        color: white;
    }
