
:root {
    --color-primary: rgba(235, 246, 255, 0.5);
    --color-secondary: rgb(255, 226, 199);
    --color-tertiary: rgb(255, 123, 0);
}
body {
    font-family: Arial, sans-serif;
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.btn--logout {
    background-color: red;
    color: white;
    transition: all 0.3s ease;
}
.btn--logout:hover {
    opacity: 0.5;
}
.btn--login {
    background-color: rgb(255, 123, 0);
    color: white;
    transition: all 0.3s ease;
}
.btn--login:hover {
    opacity: 0.5;
}

.login-box {
    background-color: white;
    width: 400px;
    margin: 0 auto;
    padding: 1rem   2rem 0 2rem;
    border: 1px solid var(--color-secondary);
    border-radius: 5px;
}

.login-box h2 {
    font-size: 18px;
    color: var(--color-tertiary);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}
