@font-face {
    font-family: 'Inter';
    src: url('/assets/Inter.ttf') format('ttf');
}

body {
    margin: 0;
    padding: 0;
    background-color: #EFF6FD;
    width: 100%;
    overflow-x: hidden;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: black;
    padding: 10px;
    height: 64px;
}

.center {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.button {
    margin: 10px;
}

.home-div-container {
    margin-top: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.home-div-container div {
    font-family: Inter;
    margin-bottom: 20px;
}

.home-div-container ul {
    list-style-type: none;
    margin-bottom: 12px;
}
.home-div-container li {
    margin-bottom: 12px;
}

.home-div-container div:first-child {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    font-family: Inter;
}

.justify {
    text-align: justify;
}

.confirmation_question {
    padding-top: 64px;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    font-family: Inter;
}

.confirmation_message {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    font-family: Inter;
}

p {
    max-width: 600px;
    display: inline-flex;
}

.btn-top-padding {
    padding-top: 24px;
}

.delete-button {
    background-color: #DD001B;
    color: white;
    border-radius: 40px;
    padding: 16px 20px;
    width: 327px;
    height: 56px;
    border: none;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-top: 20px;
}

.delete-button:hover {
    background-color: #C60018;
}

.logout-button {
    background-color: #E2EBF3;
    color: black;
    border-radius: 40px;
    padding: 16px 20px;
    width: 327px;
    height: 56px;
    border: none;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-top: 16px;
}

.logout-button:hover {
    background-color: #DBE4ED;
}

.login-button {
    background-color: black;
    color: white;
    border-radius: 40px;
    padding: 16px 20px;
    width: 327px;
    height: 56px;
    border: none;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    margin-top: 16px;
}

.login-button:hover {
    background-color: #333333;
}

img {
    width: 63px;
    height: 29px;
}

#email {
    font-family: Inter;
    width: 327px;
    height: 40px;
    margin: 16px;
    font-size: 1.2em;
    padding-left: 10px;
    border: none;
    border-bottom: 1px solid #000;
    background: none;
    text-align: center;
}

#email:focus {
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
}

label[for="email"] {
    font-family: Inter;
    font-size: 1.2em;
    padding: 10px;
    max-width: 600px;
    display: inline-block;
}

#submit {
    margin: 16px;
}

input::placeholder {
    text-align: center;
}

.animated-error {
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #DD001B;
    animation: fadeIn 1s ease-in-out forwards;
    visibility: hidden;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}