@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body {
    margin: 0;
    background-color: #1E242C;
}
.link_add_panel{
    width: 90%;
    overflow: hidden;
    margin-left: 10%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.link_input{
    padding: 24px;
    width: 450px;
    border-radius: 10px;
    background-color: #33383eba;
    font-size: 19px;
    border: 2px solid #1C2C41;
    color: #9C9C9C;
    display: block;
}
.link_input:focus{
    outline: 3px solid #456288;
}
.pass_input{
    background-color: #802d15;
    color: #e2947f;
    margin-top: 5px;
    animation: fadeIn 1.2s;
    display: none;
}
.pass_input::placeholder {
    color: #e2947f;
}
.pass_input:focus{
    outline: none;
}
.settings{
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}
.settings button {
    padding: 15px 100px;
    cursor: pointer;
    font-size: 30px;
    width: 48%;
    background-color: #313a460b;
    border-radius: 5px;
    border: none;
    transition: 0.5s all ease;
    display: inline-block;
    position: relative;
    color: #0087ca;
}
.settings button::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 5px;
    bottom: 0;
    left: 0;
    background-color: #FEE75C;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.animation_btn{
    content: "";
    display: none;
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background-color: #FEE75C;
}

.settings button:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.submit_btn{
    width: 100%;
    padding: 25px 0;
    cursor: pointer;
    color: #9C9C9C;
    border: none;
    margin-top: 10px;
    background-color: #313A46;
    font-size: 20px;
    border-radius: 5px;
    transition: 0.6s all ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.submit_btn:hover{
    border: 1px solid #ffd900;
    outline: 3px solid #ffea61;
    background-color: #FEE75C;
    color: rgb(123, 123, 123);
}
.submit_btn:active {
    background-color: #fff3b1;
}
/* #FEE75C */
@media only screen and (max-width: 950px) {
    .link_input{
        width: 250px;
    }
    .settings{
        display: block;
    }
    .settings button {
        display: block;
        width: 100%;
        margin-top: 10px;
    }
    .link_add_panel{
        margin-left: 20%;
        width: 80%;
    }
}
.addPasswordDiv{
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    top: 0;
    justify-content: center;
    align-items: center;
    background-color: rgba(35, 35, 35, 0.2);
    backdrop-filter: blur(1.5rem);
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }  
@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}  

.divPanelForPassword{
    background-color: #313A46;
    border: 5px solid #161a20;
    border-radius: 20px;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.titleForPassword{
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: white;
    text-align: center;
    margin: 0;
}
.newPassWordInput{
    min-width: 300px;
    max-width: 50%;
    padding: 15px;
    font-size: 18px;
    margin-top: 15px;
    border-radius: 10px;
    background-color: #1E242C;
    border: 2px solid #161a20;
    color: white;
}
.newPassWordInput:focus {
    outline: none;
}
button {
    cursor: pointer;
}
.login_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 40px;
    background-color: #5865F2;
    color: white;
    border-radius: 15px;
    transition: 0.5s all ease;
}
.login_btn:hover{
    padding: 20px 50px;
    border: 1px solid rgb(77, 77, 77);
    border-width: 0 2px 2px 0;
}
.login_btn:active{
    border-width: 1px 0 0 1px;
}
.login_btn img {
    width: 50px;
}
.login_btn button {
    background-color: transparent;
    border: none;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
}
.login_panel_welcome{
    position: absolute;
    top: 30px;
}
@media only screen and (max-width: 700px) {
    .link_add_panel{
        width: 100%;
        margin-left: 0;
    }
}
a{
    text-decoration: none;
}
.errors_div{
    position: absolute;
    font-family: 'Roboto', sans-serif;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 15px 0;
    background-color: #ED4245;
}
.succ_created{
    padding: 20px 0;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    background-color: #4ec975;
    color: white;
    margin-top: 20px;
    border-radius: 15px;
    animation: fadeIn 1s ease;
    transition: 0.1s all ease;
    cursor: pointer;
}
.succ_created:hover{
    margin-top: 25px;
}
.succ_created:active {
    background-color: #0087ca;
}
.succ_created img {
    width: 20px;
    margin-left: 20px;
}
.higher{
    margin-bottom: 10px;
}
.delete_custom_id{
    align-items: center;
    appearance: none;
    /* #4c6586 0, #1E242C */
    background-color: #ED4245;
    border: 2px solid #ED4245;
    border-width: 0 0 0 3px;
    border-radius: 6px;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: white;
    cursor: pointer;
    width: 170px;
    display: inline-flex;
    font-family: 'Roboto', sans-serif;
    padding: 25px 0;
    margin-top: 6px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: box-shadow .15s,transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow,transform;
    font-size: 18px;
    display: block;
    transition: 1s all ease;
}
.delete_custom_id:focus{
    box-shadow: #e7171a 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #ec0c0f 0 -3px 0 inset;
}
.delete_custom_id:hover {
    border: 2px solid gray;
    border-width: 0 0 0 3px;
    box-shadow: #c1c1c1 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #a6a6a6 0 -3px 0 inset;
    transform: translateY(-2px);
    background-color: #da090c;
}
.delete_custom_id:active{
    box-shadow: rgb(195, 202, 255) 0 3px 7px inset;
    transform: translateY(2px);   
}
.customIdinput{
    color: rgb(96, 96, 96);
}
.customIdinput::placeholder {
    color: rgb(95, 95, 95);
}
.toast{
    transition: 0.3s all ease;
    position: fixed; top: 10px; right: 10px; background-color: #51a351; display: flex; justify-content: center; align-items: center; padding: 20px; border-radius: 5px; cursor: pointer;
    animation: fadeIn 1.2s;
}
.toast:hover{
    box-shadow: 1px 1px 8px 8px rgba(82, 82, 82, 0.7);
}
.toast::after {
    animation: fadeOut 1.5s;
}