﻿.login_body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: linear-gradient( 225deg, #e7e9f6 0%, #e0eefe 50%, #f4e6e7 100% );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #111;
}
.login_logo > svg {
    max-width: 220px;
    max-height: 45px;
    margin-bottom: 20px;
}
.login_notice {
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
}

    .login_notice h3 {
        margin: 0 0 10px;
        font-weight: 600;
        font-size:16px;
    }

    .login_notice p {
        font-size: 12px;
        margin: 4px 0;
        color: rgba(29, 29, 29, 0.6);
    }
.login_ins_text {
    font-weight: bold;
    margin: 10px 0px !important;
    width: 100%;
    float: left;
    margin-top:25px;
}
.login_notice .browsers {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 0px;
    width: 100%;
    float: left;
}

        .login_notice .browsers a {
            display: flex;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid #ccc;
            background-color: transparent;
            cursor: pointer;
            font-size: 13px;
            transition: 0.2s;
            height: 36px;
            justify-content: center;
            align-items: center;
        }
.browsers a path {
    stroke: #141B34;
}
.browsers a {
    text-decoration:none;
}
    .browsers a:hover {
        text-decoration: none;
        background-color: #1d1d1d;
        color: #fff;
        border: 1px solid #1d1d1d;
    }
    .browsers a:hover path {
        stroke:#fff;
    }
   
.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 540px;
    text-align: center;
    min-width:400px;
}

    .card img {
        width: 40px;
        margin-bottom: 15px;
    }

    .card h2 {
        margin: 0 0 20px;
        font-size: 18px;
        font-weight: 600;
    }

    .card input {
        width: 100%;
        padding: 12px;
        margin: 8px 0;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
        outline: none;
        margin-top:0px !important;
    }

        .card input[type=button] {
            width: 100%;
            padding: 12px;
            margin-top: 15px !important;
            background: #111;
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            transition: 0.2s;
        }

        .card #BtnLogin:hover {
            background: #333;
        }

    .card .forgot {
        margin-top: 35px;
        font-size: 13px;
        color: #444;
        width: 100%;
        float: left;
    }

        .card .forgot a {
            color: #111;
            font-weight: 600;
            text-decoration: none;
        }

.help {
    margin-top: 25px;
    font-size: 13px;
    text-align: center;
    color: #555;
}

    .help a {
        color: #000;
        font-weight: 600;
        text-decoration: none;
    }
.text-security-disk {
    -webkit-text-security: disc !important;
}
.login_field {
    width:100%;
    float:left;
}
    .login_field label {
        width: 100%;
        float: left;
        text-align: left;
        margin-bottom: 5px;
        font-size: 12px;
        font-weight: normal;
        margin-top: 10px;
    }
.rem_block {
    width: 100%;
    float: left;
}
    .rem_block label {
        width: auto;
        float: left;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        cursor: pointer;
        gap: 5px;
        color: rgba(29, 29, 29, 0.6);
    }
    .rem_block label input {
        width: auto;
        margin-bottom: 0px;
    }
.login_bottom_pic {
    bottom: 0px;
    left: 0px;
}
.login_top_pic {
    top: 0px;
    right: 0px;
}
.login_bottom_pic,
.login_top_pic {
    position: absolute;

}
.login_body input[type="checkbox"]:checked {
    accent-color: #111;
}

    @media(max-width:500px) {
        .login_bottom_pic {
        bottom: -110px;
        left: 0px;
    }

    .login_top_pic {
        top: 0px;
        right: 0px;
    }
}