/* ######## Variables ######## */
:root {
	--primary: #085698;
	--darkPrimary: #064f8a;
	--background: #ffffff;
    --wallpaper: #f9f9f9;
	--secondary: #7EDE49;
	--tertiary: #248FDE;
}

/* ######## Delete Styling ######## */
#delete-account-page {
    display: flex;
    flex-direction: column;
    font-family: 'Signika', sans-serif;
    font-weight: normal;
    padding-top: 100px;
}

#delete-account-page {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
}

#delete-account-page h2 {
    font-family: 'Signika';
    font-size: 64px;
    width: 100%;
    align-items: center;
    font-weight: normal;
    width: fit-content;
    margin-top: 0px;
    margin-bottom: 20px;
}

#delete-account-page h3 {
    font-family: 'Signika', sans-serif;
    font-weight: normal;
    color: var(--primary);
    background-color: transparent;
    border: none;
    display: flex;
    gap: 10px;
    flex-direction: row;
    box-shadow: none;
    align-items: center;
    margin-bottom: 30px;
}

#delete-account-page h3 .tag-number {
    background-image: linear-gradient(to right, #13b59f, #5089e0);
    border-radius: 10px;
    height: 40px;
    width: 40px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#delete-account-page h3 .tag-number::after {
    content: '';
    background-image: url('../../static/images/icons/people-white.svg');
    background-size: contain;
    background-position: center;
    height: 24px;
    width: 24px;
    display: block;
}

#delete-account-page h4 {
    font-family: 'Signika', sans-serif;
    font-weight: normal;
}

#delete-account-page p {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    margin: 0px;
    line-height: 26px;
    width: 650px;
    max-width: 100%;
}

#delete-account-page .transition-image {
    height: 300px;
    width: 100%;
    margin-top: -50px;
}

#bottom-content .tag {
    background-color: black;
    border: 2px solid white;
}

#delete-account-page .account-icon {
    margin-bottom: 15px;
}

#delete-button {
    display: flex;
    flex-direction: row;
    padding: 10px;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 10px;
    height: 40px;
    box-sizing: border-box;
    width: fit-content;
    color: white;
    border-radius: 10px;
    margin-top: 40px;
    user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
    background-color: #de4949;
    gap: 10px;
    align-items: center;
    border: rgba(222, 73, 73) 2px solid;
    transition: background-color 200ms ease-in-out, color 200ms ease-in-out;;
    font-weight: 500;
}

#delete-field {
    margin-top: 40px;
    width: 300px;
    height: 40px;
    line-height: 10px;
    font-size: 14px;
    border-radius: 10px;
    padding: 10px;
    font-family: 'Inter', sans-serif;
    padding-left: 20px;
    box-sizing: border-box;
    border: 2px solid rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.8);
    border-right: none;
}

#delete-button:hover {
	cursor: pointer;
}

#delete-button:active {
    border-color: rgba(255, 255, 255, 0.4);
}

#bottom-content #delete-title {
    margin-bottom: 30px;
}

#delete-icon {
    height: 18px;
    width: 18px;
}

#delete-icon svg {
    height: 18px;
    width: 18px;
}

#form-row {
    display: flex;
    flex-direction: row;
}

#account-content {
    margin: 100px;
    margin-left: 6%;
    margin-right: 6%;
    padding: 40px;
    padding-left: 4%;
    padding-right: 4%;
    width: fit-content;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    border: white 2px solid;
}

#delete-account-page #delete-response {
    margin-top: 30px;
    color: white;
    font-family: 'Signika', sans-serif;
    background-color: var(--primary);
    border-radius: 10px;
    border: rgba(255, 255, 255, 0.288) 2px solid;
    padding: 10px;
    box-sizing: border-box;
    max-width: 100%;
}

/* ######## Mobile Styling ######## */
@media (max-width: 580px) {
    #top-content {
        padding-top: 25px;
    }

    #delete-account-page h2 {
        font-size: 50px;
    }

    #account-content {
        margin-top: 40px;
        margin-bottom: 40px;
        width: 88%;
        box-sizing: border-box;
        margin-left: 6%;
        margin-right: 6%;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 8px;
        padding-bottom: 30px;
    }

    #form-row {
        justify-content: center;
        margin-top: 25px;
    }

    #delete-field {
        width: 92%;
        margin-top: 0px;
    }

    #delete-button {
        margin-top: 0px;
        height: 40px;
        width: 40px;
        padding: 0px;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #delete-button #delete-icon {
        display: block;
    }

    #delete-button div {
        display: none;
    }
}
