body {
    color: #003049;
}

.login_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #003049;
}

.login {
    width: 350px;
    height: auto;
    padding: 15px;
    background: #f8f9fa;
    font-size: 20px;
}
.login_title {
    text-align: center;
    font-size: 40px;
    line-height: 50px;
}

.input_wrapper {
    display: flex;
    flex-direction: column;
}

form#login_form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
input#login_button {
    background: #c1121f;
    color: white;
    border: none;
    padding: 10px 0px;
    cursor: pointer;
}
.insta_accounts_wrapper {
    padding: 50px;
}

.insta_accounts {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.account_item {
    width: calc(20% - calc(20px * 4 / 5));
    height: 240px;
    padding: 10px;
}
.account_item.add_new_account {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px dotted;
    font-size: 40px;
    text-align: center;
    cursor: pointer;
    line-height: 50px;
    gap: 20px;
}

.account_item.add_new_account svg {
    width: 75px;
    height: 75px;
}
.new_account_popup_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: none;
}

.new_account_popup_wrapper.active {
    display: flex;
}

.new_account_popup {
    width: 400px;
    height: auto;
    padding: 5px 25px 25px 25px;
    background: #003049;
    color: white;
    position: relative;
}

.new_account_popup_close {
    position: absolute;
    right: 2px;
    top: 2px;
    width: 50px;
    height: 50px;
    background: white;
    padding: 10px;
    cursor: pointer;
}
.new_account_popup_title {
    font-size: 35px;
    margin-bottom: 30px;
}
form#new_account_form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.popup_input_wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 25px;
}

.popup_input_wrapper input {
    line-height: 25px;
    padding: 3px 10px 10px;
}
input#new_account_button {
    text-align: center;
    border: none;
    background: white;
    color: #003049;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
}
.account_item.existing_account {
    border: 2px solid;
    position: relative;
    padding: 0;
    text-align: center;
}
.account_item.existing_account.status_active {
    border-color: #06d6a0;
}

.account_item.existing_account.status_error {
    border-color: #ef476f;
}

.account_item.existing_account.status_not_authenticated {
    border-color: #ffd166;
}

.account_item.existing_account.status_active .account_item_name {
    background-color: #06d6a0;
}
.account_item.existing_account.status_error .account_item_name {
    background-color: #ef476f;
}
.account_item.existing_account.status_not_authenticated .account_item_name {
    background-color: #ffd166;
}
.account_item_name {
    text-align: center;
    font-size: 25px;
    margin-bottom: 25px;
    background: #ef476f;
    color: white;
    padding: 5px 0px;
}
.account_item_content {
    width: 100%;
    padding: 0px 15px;
}
.account_item.existing_account.active {
    border-color: #06d6a0;
}
.account_item_copy_link {
    position: absolute;
    right: 5px;
    top: 0px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.account_item_button {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #118ab2;
    color: white;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}
.account_item_button.content_link {
    display: none;
}

.account_item_button.content_link.active {
    display: flex;
}
