*{padding: 0; margin: 0; box-sizing: border-box;}

body {
    background-color: #09090A;
    color: white;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 48px;

    position: fixed;
    width: 100%;
}

button {
    padding: 16px 24px;

    background-color: transparent;

    border: 1px solid #8B5CF6;
    border-radius: 8px;

    color: white;

    display: flex;
    align-items: center;
    gap: 12px;

    font-family: 'Inter' , sans-serif;

    cursor: pointer;
}

#form-habits {
    display: flex;

    padding: 182px 48px 48px;
}

.habits {
    display: flex;
    flex-direction: column;
    gap: 24px;

    margin-top: 60px;
}

.habit {
    width: 64px;
    height: 64px;

    font-size: 32px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.days {
    display: flex;
    gap: 48px;
    margin-left: 32px;
}

.day {
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.day div {
    margin-bottom: 8px;

    font-family: 'Roboto Mono';
    font-size: 20px;
    line-height: 125%;

    text-align: center;

    color: #A1A1AA;
}

input {
    appearance: none;
    -webkit-appearance: none;

    width: 64px;
    height: 64px;

    border: 2px solid #27272A;
    border-radius: 8px;

    background: #18181B;
}

input:checked {
    background: #8B5CF6;

    border: 2px solid #A78BFA;
}

@media (max-width: 570px) {
    button div {
        display: none;
    }
}