#loginForm table {
    float: left;
}

.bookmarkTutorialDiv {
    float: right;
}

.redText {
    color: #ff0000;
    font-weight: bold;
}

.warning {
    color: #B94A48;
    background-color: #F2DEDE;
    border-color: #EED3D7;
    padding: 8px 35px 8px 14px;
    margin-bottom: 20px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid #FBEED5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.warning a {
    color: blue;
    font-size: 14px !important;
}

*,*::before,*::after {
    box-sizing: border-box;
}

.auth_wrapper {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f6fa;
    z-index: 9990;
    font-family: 'Inter', sans-serif;
}

.auth_card {
    width: 360px;
    max-width: 90%;
    padding: 32px 24px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

.auth_title {
    margin: 0 0 24px;
    font-size: 1.75rem;
    font-weight: 700;
}

.auth_row {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.auth_row label{
    font-size: .875rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 6px;
}

.auth_row input{
    width: 100%;
    padding: 12px 16px;
    font-size: .875rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}

.auth_row input:focus {
    outline: none;
    border: 1px solid #0073ff !important;
    box-shadow: 0 0 0 2px rgba(0,115,255,.15);
}

input.normal {
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-radius: 6px;
    background: #0073ff;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

input.normal:hover {
    background: #0061d6;
}

.error {
    width: 360px;
    max-width: 90%;
    margin: 0 auto 16px auto;
    padding: 12px 16px;
    border-radius: 6px;
    background: #fdecec;
    border: 1px solid #f5c2c7;
    color: #b4232c;
    font-size: .875rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    top: 20%;
}