body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #e8edf4, #d8e2ee);
    font-family: Arial, Helvetica, sans-serif;
}

img.img_login {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 40px auto 25px auto;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

table {
    width: 420px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-collapse: separate;
    border-spacing: 0 16px;
}

td {
    font-size: 15px;
    color: #2f3a45;
    vertical-align: middle;
}

td:first-child {
    width: 130px;
    font-weight: bold;
    padding-right: 15px;
    text-align: right;
}

.inp,
.pass {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccd5df;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.inp:focus,
.pass:focus {
    border-color: #2f80ed;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(47,128,237,0.15);
}

.btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2f80ed, #1b5fc1);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #1b5fc1, #154a96);
    transform: translateY(-1px);
}

.btn:active {
    transform: scale(0.98);
}

.title {
    width: 700px;
    margin: 20px auto 25px auto;
    text-align: center;

    font-size: 34px;
    font-weight: bold;
    letter-spacing: 3px;

    color: #1f2d3d;

    text-shadow: 0 2px 8px rgba(0,0,0,0.08);

    font-family: Arial, Helvetica, sans-serif;
}