﻿*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #E9E9E9;
    font-family: 'Californian FB';
    font-size: 10px;
    color: #000000;
}

/* Hide old header and footer */
#heads,
#tails,
.style_parent,
.style_left_child,
.style_cntr_child,
.style_rigt_child {
    display: none !important;
}

#content,
#mainSquare {
    width: 100%;
    height: 100%;
}

/* Center the login panel */
.wrapper {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #E9E9E9;
    padding: 0;
}

/* Login Panel */
.loginContainer {
    width: 520px;
    min-height: 420px;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(250,250,250,0.97);
    border: 1px solid #BFBFBF;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.20), 0 2px 5px rgba(0,0,0,0.10);
}

    /* Logo */
    .loginContainer img {
        width: 64px;
        height: 64px;
        margin-bottom: 5px;
    }

    /* Title */
    .loginContainer h2,
    .loginContainer h3 {
        margin-bottom: 15px;
        color: #355AC8;
        font-weight: normal;
    }

/* Textboxes and Combos */
.login-Control {
    width: 100%;
    height: 34px;
    padding: 5px 10px;
    font-size: 12px;
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #C5C5C5;
    border-radius: 5px;
    outline: none;
    transition: all .20s ease;
}

    .login-Control:focus {
        border-color: #5B9BD5;
        box-shadow: 0 0 6px rgba(91,155,213,.35);
    }

/* Buttons */
.btn-Login,
.btn-Register {
    width: 100%;
    height: 36px;
    border: none;
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 12px;
    cursor: pointer;
    transition: all .20s ease;
}

.btn-Login {
    background: #4965DD;
}

    .btn-Login:hover {
        background: #FF8C00;
    }

.btn-Register {
    background: #2D960E;
}

    .btn-Register:hover {
        background: #FF8C00;
    }

/* Language button */
#btnLang {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid #2F75B5;
    background: linear-gradient(to bottom, #5B9BD5, #2F75B5);
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
}

    #btnLang:hover {
        transform: scale(1.05);
    }

/* Remember me */
input[type=checkbox] {
    vertical-align: middle;
}

.txt-eng {
    direction: ltr;
    text-align: left;
}

.txt-arb {
    direction: rtl;
    text-align: right;
}
