/* Login page style only -----------------------------------  */
body {
    margin: 0;
}

.body-wrap {
    background-color: #0f1111;
    position: relative;
}

.wrap-imp {
    position: absolute;
    width: 10vw;
    top: 2vw;
    left: 2vw;
}

.login-div {
    width: 100%;
    height: 100vh;
    display: grid;
    justify-content: center;
    align-content: center;
    background-image: url("../images/loginBg002.jpg");
    background-size: cover;
    background-position: center;
    background-color: #df03039a;
    background-blend-mode: overlay;
}

.login-card {
    width: max-content;
    height: max-content;
    padding-inline: 5vw;
    padding-block: 3vw;
    background: linear-gradient(180deg, #df0303af 20%, #ffffff);
    border-radius: 1vw;
    color: #ffffff;
}

.login-card h2 {
    font-size: 2vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 0;
}

.log-fields {
    display: grid;
    grid-template-columns: auto;
    gap: 1vw;
    margin-bottom: 2vw;
    color: #ffffff;
}

.log-fields input {
    font-size: 1vw;
    padding: 0.5vw;
}

.button-13 {
    width: 100%;
    background-color: #fff;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    box-shadow: rgba(213, 217, 217, .5) 0 2px 5px 0;
    box-sizing: border-box;
    color: #0f1111;
    cursor: pointer;
    display: inline-block;
    font-size: 1vw;
    font-weight: 800;
    padding: 0.5vw 1vw 0.5vw 1vw;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    transition: 0.6s ease;
}

.button-13:hover {
    background-color: #dd291b;
    color: #ffffff;
}