﻿* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    height: 100%;
}

body {
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-image: var(--VW_AccountLoginIMG_Background);
}

ul {
    margin-left: -40px;
}

::marker {
    color: transparent;
}

.form-login {
    box-sizing: border-box;
    width: 20vw;
    text-align: center;
    font-family: arial;
    color: white;
    position: absolute;
    right: 10%;
    top: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-login input[type="text"],
.form-login input[type="password"] {
    display: block;
    width: 100%;
    height: 40px;
    color: blueviolet;
    border: hidden;
    border-color: white;
    border-radius: 50px;
    text-align: center;
}

.form-login .image1 img {
    max-width: 75%;
    margin-bottom: 25px;
}

.form-login .image2 img {
    max-width: 40%;
    margin-top: 20px;
}

.form-login input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.form-login button[type="submit"] {
    width: 50%;
    height: 40px;
    color: white;
    background-color: #792182;
    border-color: white;
    border-radius: 50px;
    text-align: center;
    border: 1px solid white;
    margin-top: 7%;
}

.form-login button[type="submit"]:hover {
    background-color: #91329b;
}

.form-login button[type="submit"]:active {
    background-color: #91329b;
}

.input-group {
    width: 80%;
}

@media screen and (max-width: 700px) {
    body {
        background-repeat: repeat;
        background-image: var(--VW_AccountLoginIMG_BackgroundMobile);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .form-login {
        position: unset !important;
        width: 80vw;
    }

    .image1 {
        width: 100%;
    }
}

@media screen and (min-width: 701px) and (max-width: 1600px) {
    body {
        background-position: 70%;
        transition: background-position 0.5s ease;
    }

    .form-login {
        width: 25vw;
    }
}
