:root {
    --bg: #f1f3f7;
    --bg-card: #ffffff;
    --bg-table-head: #e6e6e6;
    --text: #1d2327;
    --text-muted: #6c757d;
    --light: #ffffff;

    --font-doc: 'Bookman Old Style','Times New Roman', serif;

    --border: #dcdcde;

    --primary: #2271b1;
    --primary-dark: #135e96;

    --success: #01694a ;
    --success-dark: #01533b;

    --danger: #d63638;
    --danger-dark: #b32d2e;

    --sidebar-bg: #1d2327;
    --sidebar-hover: #2c3338;
    --sidebar-sub: #2c3338;
    --sidebar-sub-hover: #3a4147;

    --radius: 6px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 2px 6px rgba(15, 23, 42, 0.12);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body { 
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, var(--primary) 0, #dddddd 55%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #111827;
}
label{
    font-weight: 500 !important;
    font-size: 13px;
}
hr{
    margin:20px 0px 0px 0px;
    background-color: var(--sidebar-sub-hover);
}

label{ font-size: 13px; }

.login-container {
    width: 512px;
    background: var(--light);
    padding-top: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.login-container h2 { 
    margin-bottom: 20px;
    font-size: 22px;
    color: #111827;
    text-align: center;
}

.row{
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    margin: 0;padding: 0;
}
.row .col{
    min-width: 100%;
    min-height: 100%;
    text-align: center;
    transition: all ease 1s;
    position: relative;
}

.login-image, .login-form {
    width: 50%; min-height: 300px;
    position: relative;
    display: flex;
    overflow: hidden;
}
.login-image{
    background: url(../../public/assets/images/Nekas.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 100%;
}

.login-form{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    background: var(--primary-dark);
    border-radius: 0px 0px 7px 7px;
}
.login-form form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-form form h4{ 
    margin: 20px auto; 
    color: var(--light); 
}

input{
    width: 100%;
    outline: none;
    border-radius: 4px;
    height: 35px; 
    padding:10px 5px;
    font-size: 13px;
    margin-bottom: 10px;
    border-color: var(--primary);
    background: transparent;
    color: var(--light);
}
input::placeholder{ color: var(--border);}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}
.login-btn {
    margin: 10px auto;
    width: 100%; padding: 7px;
   /* background: #2271b1;*/
    background: transparent;
    color: #fff; outline: none;
    border: 1px solid var(--primary-dark);
    border-radius: 4px;
    box-shadow: 0px 0px 3px var(--bg-table-head);
    font-size: 15px; cursor: pointer;
    transition: background 0.15s ease, transform 0.05s ease;
}

.login-btn:hover {
    background: #135e96;
    transform: translateY(-1px);
  /*  border: 1px solid var(--border);*/
  /*  box-shadow: 0px 0px 3px var(--text-muted);*/
}

.login-btn:active {
    transform: scale(0.98);
}

.btn-toggle-mod{
    position: absolute; 
    top: 0;
    cursor: pointer;
    color: var(--light);
    width: 100%; height: 30px;
    border: none; outline: 0;
    margin-bottom: 10px;
    background: var(--primary-dark);
    transition: all ease .3s;
}

.btn-toggle-mod:hover{
    background: var(--primary);
}

.btn{
    width: 100%;
    padding: 7px;
    border-radius: 4px;
    background: #ffae00be;/*var(--text-muted);*/
    color: var(--light);
    transition: all ease-in .2s;
}
.btn:hover{
    background: var(--text-muted);
    box-shadow: 0px 0px 2px var(--border);
    transform: translateY(-1px);
}
.btn-toggle-mod:hover{
    color: var(--border);
}

.separator{
    width: 30px;
    height: 3px;
    background: var(--border);
    margin: 10px;
    border-radius: 7px;
}