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

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

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

    padding: 48px;
    position: fixed;
    width: 100%;
    background-color: #09090A;
}

button {
    padding: 16px 24px;
    border: 1px solid #8B5CF6;
    border-radius: 8px;
    background-color: transparent;
    color: white;
    gap: 12px;

    display: flex;
    align-items: center;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
}

form {
    display: flex;
}

#form-habits {
    display: flex;
    padding: 182px 48px 48px;
    width: fit-content;
}

.habit {

    width: 64px;
    height: 64px;
    font-size: 32px;

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

.habits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;   
}

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

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

.day div {
    margin-bottom: 8px;
    font-family: 'Roboto Mono';
    font-size: 20px;
    line-height: 125%;

    color: #a1a1aa;
    text-align: center;
}

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

    width: 64px;
    height: 64px;
    background: #18181b;

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

input:checked {
    background: #8B5CF6;
    border: 2px solid #A78BFA;
}

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