html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: rgb(206, 206, 206);
}
body {
    font-family: "Sora", sans-serif;
    min-height: 100vh;
    background: url("../backgrounds/account-background.svg") no-repeat center center;
    background-size: cover;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.account-section {
    padding: 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border: solid 0.15rem;
    border-color: white;
    border-radius: 2rem;
    box-shadow: 0 0 1.3rem white;
    width: 19rem;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}
.account-section h1 {
    display: block;
    font-size: 1.6rem;
    text-align: center;
    color: rgb(43, 43, 43);
    padding: 0 0 0.5rem;
    margin: 0;
}
.account-section h2 {
    display: block;
    font-size: 0.8rem;
    text-align: center;
    color: rgb(99, 99, 99);
    padding: 0 0 1.3rem;
    margin: 0;
}

.account-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.account-button {
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 2.7rem;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.account-button-img {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}
.account-button-span {
    font-size: 0.9rem;
    font-family: "Sora", sans-serif;
    font-weight: 550;
}

.normal-button {
    background-color: white;
}
.normal-button span {
    color: rgb(64, 80, 230);
}

.delete-button span {
    color: rgb(204, 34, 34);
}

.normal-button-icon {
    fill: rgb(73, 82, 163);
    stroke: rgb(73, 82, 163);
}

.delete-button {
    background-color: rgb(255, 172, 172);
}

.delete-button-icon {
    fill: rgb(170, 0, 0);
    stroke: rgb(170, 0, 0);
}

.window {
    z-index: 30;
    padding: 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border: solid 0.15rem;
    border-color: white;
    border-radius: 2rem;
    box-shadow: 0 0 1.5rem white;
    width: 19rem;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.window-h1 {
    margin: 0 0 0.3rem 0;
    text-align: center;
}

.window-h2 {
    display: block;
    font-size: 1rem;
    text-align: center;
    color: rgb(99, 99, 99);
    padding: 0 0 1.3rem;
    margin: 0;
    font-weight: 600;
}

.window-btn {
    width: 100%;
    height: 2.3rem;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    font-family: "Sora", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-input {
    border: none;
    height: 2.7rem;
    border-radius: 1.3rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    padding-left: 1rem;
}
.form-input::placeholder {
    font-family: "Sora", sans-serif;
    color: rgb(64, 81, 230, 0.39);
    font-weight: 600;
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.3rem;
}

.window-confirm-btn {
    background-color: rgb(71, 84, 210);
    color: white;
    margin: 1rem 0 0.5rem 0;
}

.window-btns-div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.window-cancel-btn {
    background-color: white;
    color: rgb(82, 82, 82);
}

#window-change-pass-btn {
    margin-top: 0.7rem;
    height: 2.3rem;
    border-radius: 1rem;
    background-color: rgb(71, 84, 210);
    color: white;
    border: none;
    font-family: "Sora", sans-serif;
    font-size: 80%;
    font-weight: 600;
}

.window-delete-btn {
    background-color: rgb(255, 92, 92);
    color: white;
}

.hidden {
    display: none;
}
