﻿.account-login {
    background-color: #1f2430;
    overflow-x: hidden;
}
.account-login .account {
    min-height: 100vh;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 60px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#eee;
}
.account-login .account-box {
    width: 560px;
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 20px 45px rgba(14, 18, 26, 0.35);
position: relative;
overflow: visible;
}

.account-login .account-box .alert-info{
    position: absolute; bottom: 100%; left: 0px;
padding: 10px;
border-radius: 8px;
}

.account-login .account-body {
    padding: 28px;
}
.account-login .account-hero {
    background-color: #f6f6f6;
    border-radius: 8px 8px 0px 0px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.account-login .account-hero__logo img {
    width: 160px;
    max-width: 100%;
    height: auto;
    display: block;
}
.account-login .account-hero__text h1 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px 0;
}
.account-login .account-hero__text p {
    margin: 0;
    font-size: 13px;
}
.account-login .account-form .form-control {
    width: 100%;
    max-width: 100%;
    height: 40px;
    padding: 8px 12px;
    font-size: 14px;
}
.account-login .account-form .form-control:focus {
    border-color: #24b685;
    box-shadow: 0 0 0 2px rgba(36, 182, 133, 0.15);
}
.account-login .account-form .form-group label {
    color: #4a5565;
    margin-bottom: 8px;
    display: block;
}
.account-login .remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    color: #4a5565;
}
.account-login .field-validation-error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #c14b4b;
}

.account-login .input-validation-error {
    border-color: #ea5a5a;
    box-shadow: 0 0 0 2px rgba(234, 90, 90, 0.15);
}
.account-login .account-form .btn {
    width: 100%;
    height: 42px;
    line-height: 42px;
    letter-spacing: 0.6px;
}
.main-content .table {
    border: 1px solid #ededed;
    box-shadow: none;
    font-size: 12px;
    color: #6b7280;
}
.main-content .table thead {
    background: #f7f7f7;
    color: #8a8f98;
}
.main-content .table thead tr th {
    font-weight: 600;
    letter-spacing: 0.6px;
    text-align: center;
}
.main-content .table thead tr th,
.main-content .table tbody tr td {
    height: 42px;
    padding: 0 12px;
    border-bottom: 1px solid #f0f0f0;
}
.main-content .table tbody tr td {
    border-right: 1px solid #f3f3f3;
}
.main-content .table tbody tr:hover {
    background-color: #f9fbfd;
}
.main-content .table td.item-title a:first-child {
    color: #5a7fb2;
}
.main-content .table td.item-title a:first-child:hover {
    color: #2f6fb3;
}
.main-content .btn-danger:hover,
.main-content .btn-danger:focus {
    cursor: pointer;
    background-color: #d9534f;
    border-color: #d9534f;
    box-shadow: 0 4px 10px rgba(217, 83, 79, 0.25);
}
@media screen and (max-width: 480px) {
    .account-login .account {
        padding: 40px 16px;
    }
    .account-login .account-body {
        padding: 22px;
    }
    .account-login .account-hero {
        padding: 20px 22px;
    }
    .account-login .account-hero__logo img {
        width: 140px;
    }
}
