body {
    font-family: 'Montserrat', sans-serif;
    color: #26343F;
    background-color: #EDE7E0;
}

h1.title {
    font-size: 6rem;
    font-weight: 700;
    color: #26343F;
    text-align: center;
}

h1.heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #26343F;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #26343F;
    text-align: left;
}

.container {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.links {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    list-style: none;

    & a {
        color: #26343F;
        transition: color 0.3s ease;

        &:hover {
            color: #26343F50;
        }
    }
}

.logo {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
    height: auto;
    object-fit: contain;
    padding: 2rem 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 512px;
    margin: 0 auto;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    & label {
        font-size: 0.8rem;
        font-weight: 500;
        color: #26343F;
    }

    & input, & textarea {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        color: #26343F;
        padding: 0.5rem;
        border-radius: 0.5rem;
        border: none;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    }
}

.actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;

    & button {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        background-color: #26343F;
        color: #FFFFFF;
        padding: 0.8rem;
        border-radius: 0.5rem;
        border: none;
        cursor: pointer;
        width: 100%;
        transition: background-color 0.3s ease;
    }

    & button:hover {
        background-color: #26343F50;
    }
}