﻿.accountPage_container_outer {
    display: flex;
    flex-direction: row;
    width: 50vw;
    height: auto;
    margin: auto auto;
    border-radius: 4px;
    box-shadow: 0px 2px 6px -1px rgb(0 0 0 / 12%);
    justify-content: center;
    margin-top: 5%;
    /*background: var(--color-accent);*/
    justify-content: space-evenly;
}

.accountPage_left_panel {
    /*width: 220px;*/
    height: auto;
    min-height: 100%;
    position: relative;
    background-size: cover;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    display: flex;
    /*width: Calc(50vw - 300px);*/
    justify-content: center;
    background: var(--color-accent);
    max-width: 600px;
}

.accountPage_logo {
    display: flex;
    align-self: center;
    object-position: center;
    width: 80%;
    max-width: 400px;
}

.accountPage_form {
    padding: 40px 30px;
    background: #fefefe;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
    width: 300px;
}

.accountPage_input_container {
    background: magenta;
    background: white;
    box-shadow: 0 0 2em #e6e9f9;
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    border-radius: 20px;
    color: #4d4d4d;
    margin-top: -3em;
}

.accountPage_label {
    background: blue;
}

.accountPage_input {
    background: red;
}

h4 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    opacity: 0.85;
}

label {
    font-size: 12.5px;
    color: #000;
    opacity: .8;
    font-weight: 400;
}

form h4 {
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.5);
}

    form h4 span {
        color: black;
        font-weight: 700;
    }

form p {
    line-height: 155%;
    margin-bottom: 5px;
    font-size: 14px;
    color: #000;
    opacity: 0.65;
    font-weight: 400;
    max-width: 200px;
    margin-bottom: 40px;
    align-self: center;
}

.floating-label {
    position: relative;
    margin-bottom: 10px;
    width: 100%;
}

    .floating-label input {
        width: calc(100% - 44px);
        margin-left: auto;
        display: flex;
    }

    .floating-label label {
        position: absolute;
        top: calc(50% - 7px);
        left: 0;
        opacity: 0;
        transition: all 0.3s ease;
        padding-left: 44px;
    }

    .floating-label .icon {
        position: absolute;
        top: 0;
        left: 0;
        height: 56px;
        width: 44px;
        display: flex;
    }

input {
    font-size: 16px;
    padding: 20px 0px;
    height: 56px;
    border: none;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    background: #fff;
    width: 280px;
    box-sizing: border-box;
    transition: all 0.3s linear;
    color: #000;
    font-weight: 400;
    -webkit-appearance: none;
}

    input:focus {
        border-bottom: solid 1px red;
        outline: 0;
        box-shadow: 0 2px 6px -8px rgba(blue, .45);
    }

.floating-label .icon svg {
    height: 30px;
    width: 30px;
    margin: auto;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.st0 {
    fill: none;
}

.st1 {
    fill: #010101;
}

a.discrete {
    color: rgba(#000, .4);
    font-size: 14px;
    border-bottom: solid 1px rgba(#000, .0);
    padding-bottom: 4px;
    margin-left: auto;
    font-weight: 300;
    transition: all .3s ease;
    margin-top: 40px;
}

    a.discrete:hover {
        border-bottom: solid 1px rgba(#000, .2);
    }


li {
    background: rgb(210 56 80);
    color: white;
    padding: 5px;
    border-radius: 11px;
    margin-top: 5px;
}


@media only screen and (max-width: 768px) {
    .accountPage_container_outer {
        flex-direction: column;
        width: auto;
    }

    .accountPage_left_panel {
        width: auto;
    }

    .accountPage_form {
        align-self: center;
    }

    .accountPage_logo {
        width: 25%;
    }
}
