
.form {
    
    height: 100vh;
    width: 100%;
    padding: 24px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;

    .input {
        color: white;
        font-size: 16px;
        place-items: start;
    }


    .title {
        font-size: 48px;
        color: var(--primary);
    }

    .desc {
        font-size: 16px;
        color: var(--primary);
        font-weight: var(--r);
        margin-bottom: 24px;
    }

    .btn {
        border: none;
    }
}