.auth-container {
    display: flex;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color-light);
    .items {
        padding: 40px;
        border-radius: 10px;
        background: var(--white);
        width: calc(100% - 80px);
        max-width: 400px;
        h1 {
            margin-bottom: 20px;
        }
        form {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 10px;
            button {
                border-radius: 5px;
            }
        }
        a {
            color: var(--main-color);
            display: flex;
            width: 100%;
            margin-top: 10px;
            height: 40px;
            align-items: center;
            border: 1px solid var(--main-color);
            border-radius: 5px;
            justify-content: center;
        }
    }
}