:root {
    /*Create vars*/
    --white-background: white;
    --black-background: #77204c;
    --header-background: #580a31;
}

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--black-background);
}

header {
    height: 60px; 
    width: 100%;
    background-color: var(--header-background); 
}

main {
    width: 100%;
    height: calc(100vh - 60px); /* 60px are from the header nav*/
    margin-top: 60px;
    background-color: var(--black-background);
    color: var(--white-background);
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
}

.label-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px; 
    width: 100%;
    max-width: 400px;
    justify-content: center;
}
.Delete-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px;
}

.Delete-container {
    background-color: var(--header-background); 
    color:#ffffff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    justify-self: center;
    height: auto;
    margin: 20px;
    width: 70%;
}

.Delete-title {
    font-weight: bold;
    color:#ffffff;
    font-size: 35px;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #808080;
    width: 100%;
    z-index: 950;
}

input[type="email"] {
    padding: 10px;
    border-radius: 5px;
    border: none;
    width: 100%;
    max-width: 400px;
    background-color: white;
    color: black;
}

button[type="submit"] {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: var(--black-background);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #dddddd;
}
