* {
    box-sizing: border-box;
}
html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
body {
    color: #161616;
    font-family: 'Poppins', sans-serif;
}
h1,h2,h3,h4,h5,h6,span,p,button,div,a,input,textarea {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -.05em;
}
.container {
    width: 100%;
    height: 100%;
    background: #F1F1F1;
    padding: 0 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header {
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
}
.header img {
    max-height: 7.5vh;
    filter: invert(1);
    -webkit-filter: invert(1);
}
.login_form {
    padding: 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
}
.login_form h2, span {
    width: 100%;
    text-align: center;
}
.login_form p {
    padding-bottom: 2rem;
}
.login_form h2 {
    font-size: 2.175rem;
    margin: 0;
    padding: 0;
}
.features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5vw;
    margin-top: 2rem;
    font-size: .875rem;
}
.features .item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all ease .3s;
}
.features .item:hover {
    transition: all ease .3s;
    transform: translateY(5px);
}
.form_body {
    display: flex;
    flex-direction: column;
    gap: .5vw;
}
.form_body input {
    padding: 1.25rem .75rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: .5rem;
    transition: all ease .3s;
}
.form_body label {
    font-weight: 600;
}
.form_body button {
    padding: 1rem .5rem;
    background: #1375E2;
    border: 0;
    border-radius: .5rem;
    color: #fff;
    cursor: pointer;
    transition: all ease .3s;
    font-weight: 500;
    letter-spacing: .04em;
}
.form_body button:hover {
    transition: all ease .3s;
    opacity: .75;
    transform: translateY(5px);
}
.form_body input:hover, .form_body input:active, .form_body input:focus {
    transition: all ease .3s;
    padding-left: 1.25rem;
    border: 1.5px #1375E2 solid;
    box-shadow: 0 0 14px rgba(19, 117, 226, 0.2);
    outline: 0;
}
button[disabled] {
    pointer-events: none;
    opacity: .5;
    transition: all ease .3s;
}

@media screen and (max-width: 660px) {
    .container {
        padding: 0 5vw;
    }
    .login_form {
        padding: 2.5rem;
    }
    .features {
        flex-direction: column;
        align-items: start;
    }
    .login_form button {
        margin-top: .5rem;
    }
    .login_form p.subtitle {
        text-align: center;
        padding-bottom: 1rem;
    }
}

/* Panel */
.panel h2 {
    font-size: 1.675rem;
    text-align: left;
    width: 100%;
}
.form_header {
    width: 100%;
    padding-bottom: 2rem;
}
.plan_details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}
.plan_item {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    width: 100%;
}
.plan_item span {
    text-align: start;
    font-size: .875rem;
}
.plan_body {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: .5rem;
    width: 100%;
}
.plan_body img {
    max-height: 22px;
}
.plan_details {
    margin-bottom: 2rem;
}
.plan_edits {
    display: flex;
    align-items: start;
    gap: 40px;
    width: 100%;
}
.plan_edits .edit-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.plan_edits .proxies {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.proxies button {
    height: 3rem;
    width: 3rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.proxies button img {
    max-width: 26px;
}
.edit-items {
    min-width: 30vw;
}
.edit-items input {
    width: 100%;
}
.edit-items .form_input {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}
.edit-items form img {
    position: absolute;
    z-index: 5;
    right: 5%;
    max-width: 16px;
}
.proxies {
    max-width: 40vw;
}
.proxies textarea {
    min-height: 25vh;
    background: rgba(0, 0, 0, 0.03);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: .5rem;
    padding: 1rem;
    resize: none;
}
.country_selector {
    margin-bottom: 1rem;
}
.country_selector select {
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: .5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all ease .3s;
    outline: none;
    min-width: 150px;
}
.country_selector select:hover, .country_selector select:focus {
    transition: all ease .3s;
    border: 1.5px #1375E2 solid;
    box-shadow: 0 0 14px rgba(19, 117, 226, 0.2);
}
.edit_field {
    display: flex;
    align-items: center;
    gap: 10px;
}
.edit_field input {
    padding: 1rem 0.75rem;
}
.edit_field button {
    width: 35%;
    padding: 1rem 0.75rem;
}
.edit_field button:hover {
    width: 40%;
    transform: none;
}
.proxy_buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.login_form.panel {
    padding: 2rem 3.5rem;
}
.small_plans {
    width: 100%;
    gap: 40px;
}
.small_plans div {
    width: 100%;
}
.edit_field button {
    margin-top: 0;
}
.plan_title {
    font-weight: 600;
}
@media screen and (min-width: 901px) {
    .large {
        display: flex;
    }
    .small_plans {
        display: none;
    }
}
@media screen and (max-width: 660px) {
    .large {
        display: flex;
    }
    .small_plans {
        display: none;
    }
    .plan_details {
        flex-direction: column;
        gap: 15px;
    }
    .plan_edits {
        flex-direction: column;
    }
    .plan_edits .proxies {
        max-width: 100%;
    }
    .login_form.panel {
        padding: 2rem;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
    body.panel {
        height: auto;
    }
    .panel .container {
        padding: 0;
    }
    .header {
        justify-content: end;
    }
    .header img {
        max-height: 5vh;
    }
    .logo {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
}
@media screen and (min-width: 661px) and (max-width: 900px) {
    .large {
        display: none;
    }
    .small_plans {
        display: flex;
    }
}
.logout {
    position: absolute;
    right: 2rem;
    background: #FF3F3F;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    padding: 1rem;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all ease .3s;
}
.logout:hover {
    opacity: .5;
    transition: all ease .3s;
}
.logout img {
    max-width: 20px;
    filter: none;
    -webkit-filter: none;
}