:root {
    --purple: #5433FF;
    --light-blue: #4379FF;
    --cyan: #1CC6FF;
    --mint-green: #97FBD1;
    --pink: #F6A4EC;
    --red: #FF3366;
    --dark-bg: #1E1E2D;
    --light-bg: #f5f5f5;
    --toolbar-bg: #D0D0FF;
}

body {
    background-color: #dbdad9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

body::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, var(--purple) 0%, var(--red) 55%, var(--light-blue) 100%);
    border-radius: 50%;
    transform: rotate(-11deg);
    z-index: -1;
}

.logo {
    width: 30%;
}

.container {
    flex: 1 0 auto;
    display: flex;
    width: 100%;
    max-width: 1200px;
    min-height: 300px;
    overflow: hidden;

}

.left-side {
    flex: 1;
    display: flex;
    position: relative;
    overflow: hidden;
    /*justify-content: center;
    align-items: center;*/
    text-align: left;
}



.right-side {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    align-items: flex-end;
}

.header {

    align-items: left;

    font-size: 3.5rem;
    padding: 10px;

    margin-bottom: 10px;
    color: #fff;
}


.tagline {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--light-bg);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.login-box {
    /*background-color: var(--dark-bg);*/
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: saturate(180%) blur(10px);
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .login-box {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

.microsoft-login-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--light-blue);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.microsoft-login-btn:hover {
    background-color: #006cbd;
}

.microsoft-login-btn i {
    margin-right: 10px;
}

.remember-me {
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.bottom-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -15%;
}

.bottom-image img {
    max-width: 100%;


}

.remember-me input {
    margin-right: .5rem;
    margin-bottom: .5rem;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .left-side {
        display: none;
    }

    .right-side {
        padding: 30px;
    }
}